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);
|
}
|
}
|
}
|