From 3d6533f1381e3e513ffb3d65bf34fb254f967088 Mon Sep 17 00:00:00 2001
From: lg <999544862qq.com>
Date: 星期五, 06 九月 2024 11:39:04 +0800
Subject: [PATCH] 优化系统模块下面的增删改查
---
DevApp/Gs.DevApp/DevFrm/FrmLogin.Designer.cs | 35 +++++++++++++----------------------
1 files changed, 13 insertions(+), 22 deletions(-)
diff --git a/DevApp/Gs.DevApp/DevFrm/FrmLogin.Designer.cs b/DevApp/Gs.DevApp/DevFrm/FrmLogin.Designer.cs
index d4fa2f9..0b64911 100644
--- a/DevApp/Gs.DevApp/DevFrm/FrmLogin.Designer.cs
+++ b/DevApp/Gs.DevApp/DevFrm/FrmLogin.Designer.cs
@@ -32,12 +32,12 @@
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmLogin));
this.lbVersion = new System.Windows.Forms.Label();
this.panel1 = new System.Windows.Forms.Panel();
+ this.comOrg = new System.Windows.Forms.ComboBox();
this.txtUser = new DevExpress.XtraEditors.TextEdit();
this.chkSaveLoginInfo = new DevExpress.XtraEditors.CheckEdit();
this.txtPwd = new DevExpress.XtraEditors.TextEdit();
this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
- this.txtDataset = new DevExpress.XtraEditors.LookUpEdit();
this.btnLogin = new DevExpress.XtraEditors.SimpleButton();
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
@@ -46,7 +46,6 @@
((System.ComponentModel.ISupportInitialize)(this.txtUser.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.chkSaveLoginInfo.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.txtPwd.Properties)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtDataset.Properties)).BeginInit();
this.SuspendLayout();
//
// lbVersion
@@ -63,12 +62,12 @@
// panel1
//
this.panel1.BackColor = System.Drawing.Color.Transparent;
+ this.panel1.Controls.Add(this.comOrg);
this.panel1.Controls.Add(this.txtUser);
this.panel1.Controls.Add(this.chkSaveLoginInfo);
this.panel1.Controls.Add(this.txtPwd);
this.panel1.Controls.Add(this.btnCancel);
this.panel1.Controls.Add(this.labelControl3);
- this.panel1.Controls.Add(this.txtDataset);
this.panel1.Controls.Add(this.btnLogin);
this.panel1.Controls.Add(this.labelControl2);
this.panel1.Controls.Add(this.labelControl1);
@@ -78,6 +77,15 @@
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(392, 276);
this.panel1.TabIndex = 243;
+ //
+ // comOrg
+ //
+ this.comOrg.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.comOrg.FormattingEnabled = true;
+ this.comOrg.Location = new System.Drawing.Point(100, 89);
+ this.comOrg.Name = "comOrg";
+ this.comOrg.Size = new System.Drawing.Size(156, 26);
+ this.comOrg.TabIndex = 245;
//
// txtUser
//
@@ -105,7 +113,7 @@
//
// txtPwd
//
- this.txtPwd.EditValue = "csframework";
+ this.txtPwd.EditValue = "123456";
this.txtPwd.Location = new System.Drawing.Point(102, 52);
this.txtPwd.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.txtPwd.Name = "txtPwd";
@@ -141,22 +149,6 @@
this.labelControl3.Size = new System.Drawing.Size(93, 18);
this.labelControl3.TabIndex = 233;
this.labelControl3.Text = "缁勭粐鏈烘瀯锛�";
- //
- // txtDataset
- //
- this.txtDataset.Location = new System.Drawing.Point(102, 93);
- this.txtDataset.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtDataset.Name = "txtDataset";
- this.txtDataset.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
- this.txtDataset.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
- new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
- this.txtDataset.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
- new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DataSetID", "甯愬缂栧彿", 100, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None, DevExpress.Utils.DefaultBoolean.Default),
- new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DataSetName", "甯愬鍚嶇О", 200, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None, DevExpress.Utils.DefaultBoolean.Default)});
- this.txtDataset.Properties.NullText = "";
- this.txtDataset.Properties.PopupWidth = 343;
- this.txtDataset.Size = new System.Drawing.Size(154, 26);
- this.txtDataset.TabIndex = 228;
//
// btnLogin
//
@@ -235,7 +227,6 @@
((System.ComponentModel.ISupportInitialize)(this.txtUser.Properties)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.chkSaveLoginInfo.Properties)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.txtPwd.Properties)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtDataset.Properties)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
@@ -250,10 +241,10 @@
private DevExpress.XtraEditors.TextEdit txtPwd;
private DevExpress.XtraEditors.SimpleButton btnCancel;
private DevExpress.XtraEditors.LabelControl labelControl3;
- private DevExpress.XtraEditors.LookUpEdit txtDataset;
private DevExpress.XtraEditors.SimpleButton btnLogin;
private DevExpress.XtraEditors.LabelControl labelControl2;
private DevExpress.XtraEditors.LabelControl labelControl1;
private System.Windows.Forms.Label lblLoadingInfo;
+ private System.Windows.Forms.ComboBox comOrg;
}
}
\ No newline at end of file
--
Gitblit v1.9.3