-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathWhiteboardCanvas.cs
85 lines (70 loc) · 2.16 KB
/
WhiteboardCanvas.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
using System;
using System.Windows.Controls;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Shapes;
using Brushes = System.Windows.Media.Brushes;
using Canvas = System.Windows.Controls.Canvas;
namespace Whiteboard
{
class WhiteboardCanvas : Canvas
{
private double brushThickness = 1.0;
private Color brushColor = Colors.Black;
private InkCanvas inkCanvas;
public WhiteboardCanvas()
{
InitializeComponent();
}
private void InitializeComponent()
{
inkCanvas = new InkCanvas();
inkCanvas.Background = Brushes.Transparent;
SizeChanged += WhiteboardCanvas_SizeChanged;
inkCanvas.UseCustomCursor = true;
inkCanvas.Cursor = this.Cursor;
this.Children.Add(inkCanvas);
}
private void WhiteboardCanvas_SizeChanged(object sender, System.Windows.SizeChangedEventArgs e)
{
// make sure the ink canvas also changes
inkCanvas.Width = this.Width;
inkCanvas.Height = this.Height;
}
private void setPenAttributes(Color color, double size)
{
DrawingAttributes inkDA = new DrawingAttributes();
inkDA.Width = size;
inkDA.Height = size;
inkDA.Color = color;
inkCanvas.DefaultDrawingAttributes = inkDA;
}
public void SetPenColor(Color color)
{
brushColor = color;
setPenAttributes(brushColor, brushThickness);
}
public void SetPenColor(Brush color)
{
var scb = (SolidColorBrush)color;
SetPenColor(scb.Color);
}
public void SetPenThickness(double size)
{
brushThickness = size;
setPenAttributes(brushColor, size);
}
public void Undo()
{
if (inkCanvas.Strokes.Count > 0)
{
inkCanvas.Strokes.RemoveAt(inkCanvas.Strokes.Count - 1);
}
}
public void Clear()
{
inkCanvas.Strokes.Clear();
}
}
}