lixiaojun
2024-09-19 89532916302a9c76bd62674e5883651854ac012e
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);
        }
    }
}