View primitives was fixed
This commit is contained in:
22
Windows/ViewModels/Primitives/RectangleControlViewModel.cs
Normal file
22
Windows/ViewModels/Primitives/RectangleControlViewModel.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using StructureHelper.Infrastructure;
|
||||
using StructureHelper.Infrastructure.UI.DataContexts;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelper.Windows.ViewModels.Primitives
|
||||
{
|
||||
internal class RectangleControlViewModel : ViewModelBase
|
||||
{
|
||||
private RectangleViewPrimitive primitive;
|
||||
|
||||
|
||||
|
||||
public RectangleControlViewModel(RectangleViewPrimitive _primitive)
|
||||
{
|
||||
primitive = _primitive;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user