| | |
| | | using DevExpress.XtraLayout; |
| | | using Gs.DevApp.DevFrm.Rpt; |
| | | using Gs.DevApp.DevFrm.Sys; |
| | | using Gs.DevApp.DevFrm.Work; |
| | | using Gs.DevApp.Entity; |
| | | using Gs.DevApp.ToolBox; |
| | | using Newtonsoft.Json; |
| | |
| | | btnGongZi.ItemClick += BtnGongZi_ItemClick; |
| | | btnLianBan.ItemClick += BtnLianBan_ItemClick; |
| | | btnGx.ItemClick += BtnGx_ItemClick; |
| | | btnWeight.ItemClick += BtnWeight_ItemClick; |
| | | var lst = new List<string>(); |
| | | foreach (BarItem item in barManager1.Items) |
| | | if (item is BarLargeButtonItem largeButtonItem) |
| | |
| | | lst.Add(item.Caption); |
| | | actions = lst; |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 启动称重 |
| | | /// </summary> |
| | | /// <param name="sender"></param> |
| | | /// <param name="e"></param> |
| | | /// <exception cref="NotImplementedException"></exception> |
| | | private void BtnWeight_ItemClick(object sender, ItemClickEventArgs e) |
| | | { |
| | | var frm = new Frm_Work09(); |
| | | frm.Show(); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 初始化按钮状态 |