コード例 #1
0
 public CircleViewModel(Shape _shape)
     : base(_shape)
 {
 }
コード例 #2
0
        public ShapeViewModel(Shape _shape) : base()
        {
            Shape = _shape;

            RemoveCommand = new RelayCommand(Remove);
        }
コード例 #3
0
 public SquareViewModel(Shape _shape)
     : base(_shape)
 {
 }