LiquidControl.xaml.cs 479 B

123456789101112131415161718192021
  1. using System.Windows.Controls;
  2. using SHJX.Service.ModelView;
  3. namespace SHJX.Service.Librarys.setting
  4. {
  5. /// <summary>
  6. /// LiquidControl.xaml 的交互逻辑
  7. /// </summary>
  8. public partial class LiquidControl : UserControl
  9. {
  10. public LiquidControl()
  11. {
  12. InitializeComponent();
  13. }
  14. public LiquidControl(SettingViewModel type)
  15. {
  16. InitializeComponent();
  17. DataContext = type;
  18. }
  19. }
  20. }