15 lines
303 B
C#
15 lines
303 B
C#
|
|
using System.Windows;
|
|||
|
|
|
|||
|
|
namespace Sai.RvKits.Windows;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// ColorPickerWin.xaml 的交互逻辑
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class ColorPickerWin
|
|||
|
|
{
|
|||
|
|
public ColorPickerWin(ColorPickerViewModel viewModel)
|
|||
|
|
{
|
|||
|
|
DataContext = viewModel;
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
}
|