Added Minimize/Maximize/Close Buttons and took WindowStyle
This commit is contained in:
@@ -8,7 +8,6 @@ namespace SimpleDraw.Models;
|
||||
public class DrawingPoints : ObservableObject
|
||||
{
|
||||
private ObservableCollection<Point> _drawingPoints = new ObservableCollection<Point>();
|
||||
// private ObservableCollection<ObservableCollection<Point>> _drawingPointsList = new ObservableCollection<ObservableCollection<Point>>();
|
||||
|
||||
private Brush _brush;
|
||||
private double _brushThickness;
|
||||
@@ -36,12 +35,4 @@ public class DrawingPoints : ObservableObject
|
||||
Brush = brush;
|
||||
BrushThickness = brushThickness;
|
||||
}
|
||||
|
||||
/*
|
||||
public ObservableCollection<ObservableCollection<Point>> DrawingPointsList
|
||||
{
|
||||
get => _drawingPointsList;
|
||||
set => SetProperty(ref _drawingPointsList, value);
|
||||
}
|
||||
*/
|
||||
}
|
||||
Reference in New Issue
Block a user