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