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