From 57012239858595c37e463c1461b7a34949a6b6d6 Mon Sep 17 00:00:00 2001
From: lu <99954486@qq.com>
Date: 星期二, 25 二月 2025 11:27:44 +0800
Subject: [PATCH] 调拨
---
DevApp/Gs.DevApp/UserControl/showLayOut.cs | 15 ++++-----------
1 files changed, 4 insertions(+), 11 deletions(-)
diff --git a/DevApp/Gs.DevApp/UserControl/showLayOut.cs b/DevApp/Gs.DevApp/UserControl/showLayOut.cs
index 4eb4524..5c881d1 100644
--- a/DevApp/Gs.DevApp/UserControl/showLayOut.cs
+++ b/DevApp/Gs.DevApp/UserControl/showLayOut.cs
@@ -19,17 +19,11 @@
InitializeComponent();
this.btnCancel.Click += BtnCancel_Click;
this.btnSave.Click += BtnSave_Click;
- this.btnHf.Click += BtnHf_Click;
+
}
-
- private void BtnHf_Click(object sender, EventArgs e)
- {
- _setLyout(0);
- }
-
private void BtnSave_Click(object sender, EventArgs e)
{
- _setLyout(1);
+ _setLyout();
}
private void BtnCancel_Click(object sender, EventArgs e)
@@ -38,7 +32,7 @@
}
- private void _setLyout(int type)
+ private void _setLyout()
{
// --col1,100,101,102,103,104,105,1,title&col2,100,101,102,103,104,105,1,title
if (txt_layOut.SelectedIndex <= 0)
@@ -87,10 +81,9 @@
}
var _obj = new
{
- applyUserGuid = txt_layOut.SelectedIndex,
layoutLst = sb.ToString(),
formPath = formNamespace,
- intType = type
+ intType = txt_layOut.SelectedIndex,
};
try
{
--
Gitblit v1.9.3