From 641e86dfaeb2eed992a717beb297c0ba84869f6b Mon Sep 17 00:00:00 2001 From: lu <99954486@qq.com> Date: 星期二, 15 四月 2025 18:08:38 +0800 Subject: [PATCH] checkbox --- DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs | 17 ++++++++++++++--- 1 files changed, 14 insertions(+), 3 deletions(-) diff --git a/DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs b/DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs index 2043a24..580873b 100644 --- a/DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs +++ b/DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs @@ -42,7 +42,6 @@ private static readonly string WebApiUrl = ConfigurationManager.AppSettings["WebApiUrl"]; - public static async Task<string> UploadFileAsync(string filePath) { using (var httpClient = new HttpClient()) @@ -726,6 +725,7 @@ var txt = ctrl as ButtonEdit; txt.Text = ""; txt.Enabled = !isEdt; + txt.ReadOnly = isEdt; continue; } //鏂囨湰 @@ -1351,6 +1351,14 @@ return false; } + public static bool ToCheck(string str) + { + if (str.ToUpper() == "true".ToUpper()) + return true; + if (str.ToUpper() == "1".ToUpper()) + return true; + return false; + } /// <summary> /// 璇诲彇grid鐨勫綋鍓嶈 @@ -1745,8 +1753,10 @@ if (column.Tag == null || column.Tag.ToString().EndsWith("edit")) column.OptionsColumn.ReadOnly = false; else - //column.OptionsColumn.ReadOnly = true; - column.OptionsColumn.ReadOnly = isPostSearch; + column.OptionsColumn.ReadOnly = true; + + //if(isPostSearch==false) + // column.OptionsColumn.ReadOnly = true; if (isPostSearch == true) { @@ -2087,6 +2097,7 @@ return 0; return decimal.Parse(txt); } + } /// <summary> -- Gitblit v1.9.3