18 lines
452 B
C#
18 lines
452 B
C#
using System.Windows;
|
|
|
|
namespace StructureHelper
|
|
{
|
|
/// <summary>
|
|
/// Логика взаимодействия для ColorPickerView.xaml
|
|
/// </summary>
|
|
public partial class ColorPickerView : Window
|
|
{
|
|
public ColorPickerView(PrimitiveDefinition primitive)
|
|
{
|
|
var viewModel = new ColorPickerViewModel(primitive);
|
|
DataContext = viewModel;
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|