154 lines
6.7 KiB
C#
154 lines
6.7 KiB
C#
namespace ERPClient
|
|
{
|
|
partial class FrmConfig
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmConfig));
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.txtDBName = new System.Windows.Forms.TextBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.txtServerName = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.btnTestConnect = new System.Windows.Forms.Button();
|
|
this.btnSave = new System.Windows.Forms.Button();
|
|
this.btnQuit = new System.Windows.Forms.Button();
|
|
this.groupBox1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.txtDBName);
|
|
this.groupBox1.Controls.Add(this.label2);
|
|
this.groupBox1.Controls.Add(this.txtServerName);
|
|
this.groupBox1.Controls.Add(this.label1);
|
|
this.groupBox1.Location = new System.Drawing.Point(11, 5);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(277, 72);
|
|
this.groupBox1.TabIndex = 0;
|
|
this.groupBox1.TabStop = false;
|
|
//
|
|
// txtDBName
|
|
//
|
|
this.txtDBName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.txtDBName.Location = new System.Drawing.Point(104, 42);
|
|
this.txtDBName.MaxLength = 50;
|
|
this.txtDBName.Name = "txtDBName";
|
|
this.txtDBName.Size = new System.Drawing.Size(162, 21);
|
|
this.txtDBName.TabIndex = 3;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(6, 45);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(65, 12);
|
|
this.label2.TabIndex = 2;
|
|
this.label2.Text = "数据库名称";
|
|
//
|
|
// txtServerName
|
|
//
|
|
this.txtServerName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.txtServerName.Location = new System.Drawing.Point(104, 14);
|
|
this.txtServerName.MaxLength = 50;
|
|
this.txtServerName.Name = "txtServerName";
|
|
this.txtServerName.Size = new System.Drawing.Size(162, 21);
|
|
this.txtServerName.TabIndex = 1;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(6, 17);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(89, 12);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "服务器名称或IP";
|
|
//
|
|
// btnTestConnect
|
|
//
|
|
this.btnTestConnect.Location = new System.Drawing.Point(12, 83);
|
|
this.btnTestConnect.Name = "btnTestConnect";
|
|
this.btnTestConnect.Size = new System.Drawing.Size(79, 23);
|
|
this.btnTestConnect.TabIndex = 1;
|
|
this.btnTestConnect.Text = "测试连接(&T)";
|
|
this.btnTestConnect.UseVisualStyleBackColor = true;
|
|
this.btnTestConnect.Click += new System.EventHandler(this.btnTestConnect_Click);
|
|
//
|
|
// btnSave
|
|
//
|
|
this.btnSave.Location = new System.Drawing.Point(109, 83);
|
|
this.btnSave.Name = "btnSave";
|
|
this.btnSave.Size = new System.Drawing.Size(79, 23);
|
|
this.btnSave.TabIndex = 2;
|
|
this.btnSave.Text = "保存设置(&S)";
|
|
this.btnSave.UseVisualStyleBackColor = true;
|
|
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
|
|
//
|
|
// btnQuit
|
|
//
|
|
this.btnQuit.Location = new System.Drawing.Point(206, 83);
|
|
this.btnQuit.Name = "btnQuit";
|
|
this.btnQuit.Size = new System.Drawing.Size(79, 23);
|
|
this.btnQuit.TabIndex = 3;
|
|
this.btnQuit.Text = "关闭(&Q)";
|
|
this.btnQuit.UseVisualStyleBackColor = true;
|
|
this.btnQuit.Click += new System.EventHandler(this.btnQuit_Click);
|
|
//
|
|
// FrmConfig
|
|
//
|
|
this.Appearance.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.Appearance.Options.UseFont = true;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(301, 122);
|
|
this.Controls.Add(this.btnQuit);
|
|
this.Controls.Add(this.btnSave);
|
|
this.Controls.Add(this.btnTestConnect);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "FrmConfig";
|
|
this.Text = "系统配置";
|
|
this.Load += new System.EventHandler(this.FrmConfig_Load);
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.groupBox1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.TextBox txtDBName;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.TextBox txtServerName;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button btnTestConnect;
|
|
private System.Windows.Forms.Button btnSave;
|
|
private System.Windows.Forms.Button btnQuit;
|
|
}
|
|
} |