| 123456789101112131415161718192021 |
- using System.Windows.Controls;
- using SHJX.Service.ModelView;
- namespace SHJX.Service.Librarys.setting
- {
- /// <summary>
- /// LiquidControl.xaml 的交互逻辑
- /// </summary>
- public partial class LiquidControl : UserControl
- {
- public LiquidControl()
- {
- InitializeComponent();
- }
- public LiquidControl(SettingViewModel type)
- {
- InitializeComponent();
- DataContext = type;
- }
- }
- }
|