| | |
| | | using Newtonsoft.Json.Linq; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel; |
| | | using System.Data; |
| | | using System.Drawing; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using System.Windows.Forms; |
| | | |
| | |
| | | getPageList(1); |
| | | pageBar1.PagerEvent += PageBar1_PagerEvent; |
| | | _setIno(); |
| | | btnCopy.Click += (s, e) => |
| | | { |
| | | if ((lbGuid.Text.Trim().Length < 10)) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowInformation("请先保存当前信息!"); |
| | | return; |
| | | } |
| | | if ((txt_foneChecked.Checked == false)) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowInformation("该项目未审核,暂不能复制到其它物料!"); |
| | | return; |
| | | } |
| | | JyxmShowCopy frm = new JyxmShowCopy(lbGuid.Text.Trim(), strType); |
| | | frm.ShowDialog(); |
| | | }; |
| | | //btnCopy.Click += (s, e) => |
| | | //{ |
| | | // if ((lbGuid.Text.Trim().Length < 10)) |
| | | // { |
| | | // Gs.DevApp.ToolBox.MsgHelper.ShowInformation("请先保存当前信息!"); |
| | | // return; |
| | | // } |
| | | // if ((txt_foneChecked.Checked == false)) |
| | | // { |
| | | // Gs.DevApp.ToolBox.MsgHelper.ShowInformation("该项目未审核,暂不能复制到其它物料!"); |
| | | // return; |
| | | // } |
| | | // JyxmShowCopy frm = new JyxmShowCopy(lbGuid.Text.Trim(), strType); |
| | | // frm.ShowDialog(); |
| | | //}; |
| | | } |
| | | |
| | | private void GridView1_ColumnFilterChanged(object sender, EventArgs e) |