1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| namespace HStation.WinFrmUI
| {
| public partial class PumpBarItem : DevExpress.XtraEditors.XtraUserControl
| {
| public PumpBarItem()
| {
| InitializeComponent();
| }
|
| private void barBtnAdd_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
| {
| var dlg = new AddPumpPropDlg();
| dlg.ShowDialog();
| }
| }
| }
|
|