duheng
2024-09-19 d88ae862d5eda101f20385f3e34a2d7e6f9d3471
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
namespace HStation.WinFrmUI.Xhs
{
    public partial class AssetsAutoMatchingMainDlg : DevExpress.XtraEditors.XtraForm
    {
        public AssetsAutoMatchingMainDlg(AssetsAutoMatchingInputViewModel assetsAutoMatchingInputViewModel)
        {
            _assetsAutoMatching = assetsAutoMatchingInputViewModel;
            InitializeComponent();
        }
 
        private AssetsAutoMatchingInputViewModel _assetsAutoMatching = null;
 
        public void SetBindingData()
        {
        }
 
        //完成
        private void btnComplete_Click(object sender, EventArgs e)
        {
        }
 
        //自动匹配
        private void BtnAutoMatching_Click(object sender, EventArgs e)
        {
            WaitFormHelper.ShowWaitForm(this);
            this.AssetsMainChoicePage.SetMatching(_assetsAutoMatching);
            WaitFormHelper.HideWaitForm(this);
        }
    }
}