From 262746cb15ee6779f24adeca62eded6389df6ef9 Mon Sep 17 00:00:00 2001 From: cnf <3200815559@qq.com> Date: 星期四, 24 七月 2025 13:50:48 +0800 Subject: [PATCH] Merge branch 'master' of http://git.gs-mes.com:8080/r/~kyy/LW_MesClient --- DevApp/Gs.DevApp/UserControl/SelectDeleteBar.cs | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/DevApp/Gs.DevApp/UserControl/SelectDeleteBar.cs b/DevApp/Gs.DevApp/UserControl/SelectDeleteBar.cs index cfc26e9..0529809 100644 --- a/DevApp/Gs.DevApp/UserControl/SelectDeleteBar.cs +++ b/DevApp/Gs.DevApp/UserControl/SelectDeleteBar.cs @@ -1,13 +1,17 @@ 锘縰sing DevExpress.Utils.DirectXPaint; using DevExpress.Utils.VisualEffects; using DevExpress.XtraGrid.Views.Base.ViewInfo; +using DevExpress.XtraGrid.Views.Grid; +using DevExpress.XtraGrid.Views.Grid.ViewInfo; using Gs.DevApp.DevFrm.Rpt; using Gs.DevApp.ToolBox; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Data; +using System.Drawing; using System.Windows.Forms; +using System.Windows.Forms.VisualStyles; namespace Gs.DevApp.UserControl { @@ -26,6 +30,7 @@ public SelectDeleteBar(string _aboutGuid, string _aboutType,string _qcGuid="") { InitializeComponent(); + this.gridView1.CustomDrawColumnHeader += (s, e) => { Gs.DevApp.ToolBox.UtilityHelper.CustomDrawColumnHeader(s, e); }; this.gridView1.MouseUp += (s, e) => { Gs.DevApp.ToolBox.UtilityHelper.CustomMouseUp(s, e, gcMain, gridView1); }; this.colChkInt.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; @@ -113,6 +118,9 @@ gridView1.PostEditor(); gridView1.UpdateCurrentRow(); System.Text.StringBuilder sb = new System.Text.StringBuilder(); + + + DataTable dt = this.gcMain.DataSource as DataTable; { foreach (DataRow dr in dt.Rows) @@ -133,10 +141,13 @@ return; } + + UpdateParent?.Invoke(this, new UpdateParentEventArgs { StringSingle = sb.ToString() }); Close(); }; } + /// <summary> /// 閫夋嫨鍚庣殑鍥炶皟浜嬩欢 /// </summary> @@ -177,4 +188,5 @@ } + } \ No newline at end of file -- Gitblit v1.9.3