[성현모] CPXV2 Init

This commit is contained in:
SHM
2024-06-26 10:30:00 +09:00
parent cdf12248c5
commit 5958993b6a
588 changed files with 698420 additions and 0 deletions

View File

@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DevExpress.XtraBars;
using static SystemX.Product.ALIS.UI.View.ViewCfg;
namespace SystemX.Product.ALIS.UI
{
public partial class FrmMain
{
private void barButtonItemASAPartID_ItemClick(object sender, ItemClickEventArgs e)
{
OpenViewModel(eAppFunctionType.A_AnalysisPartID, Commons.LoginAccessLevel.None);
}
private void barButtonItemASAProcess_ItemClick(object sender, ItemClickEventArgs e)
{
OpenViewModel(eAppFunctionType.A_AnalysisProcessTrend, Commons.LoginAccessLevel.None);
}
private void barButtonItemLogSearch_ItemClick(object sender, ItemClickEventArgs e)
{
OpenViewModel(eAppFunctionType.A_LogSearchTrend, Commons.LoginAccessLevel.None);
}
}
}