提交代码

This commit is contained in:
hehaibing-1996
2024-06-29 17:30:54 +08:00
parent 5ea25c477c
commit 344158c722
43 changed files with 1148 additions and 98 deletions

View File

@ -384,6 +384,28 @@ namespace 货架标准上位机.ViewModel
var generateWindow = new MatBaseInoGenarateMatInfoView(matBaseInfo);
var result = generateWindow.ShowDialog();
}
public ICommand BtnScanPrintCommand { get => new DelegateCommand(BtnScanPrint); }
public async void BtnScanPrint()
{
try
{
var generateWindow = new MatBaseInoScanGenarateMatInfoView();
LocalStatic.IsScanGenarateMatInfoWindowOpen = true;
LocalStatic.ScanGenarateMatInfoWindow = generateWindow;
var result = generateWindow.ShowDialog();
}
catch (Exception ex)
{
}
finally
{
LocalStatic.IsScanGenarateMatInfoWindowOpen = false;
}
}
#endregion
#region PageOperation