UcThickHeat.xaml.cs 406 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
using System.Windows.Controls;

namespace FLY.KSL.UI.Client
{
    /// <summary>
    /// UcThickHeat.xaml 的交互逻辑
    /// </summary>
    public partial class UcThickHeat : UserControl
    {
        public UcThickHeat()
        {
            InitializeComponent();
        }

        public void Init(UcThickHeatVm viewModel)
        {
            this.DataContext = viewModel;
        }
    }

}