Exemplo n.º 1
0
 public RectanglePropertiesViewModel(ElementRectangle elementRectangle)
 {
     Title = "Свойства фигуры: Прямоугольник";
     ImagePropertiesViewModel = new ImagePropertiesViewModel();
     _elementRectangle = elementRectangle;
     CopyProperties();
 }
Exemplo n.º 2
0
 public PolygonPropertiesViewModel(ElementPolygon elementPolygon)
 {
     Title = "Свойства фигуры: Полигон";
     ImagePropertiesViewModel = new ImagePropertiesViewModel();
     _elementPolygon = elementPolygon;
     CopyProperties();
 }