⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmkdmanage.designer.cs

📁 一个好的系统 对初学者很有用啊 来看看啊
💻 CS
字号:
namespace ExamCenter.FormTier
{
    partial class FrmKdManage
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer component = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmKdManage));
            this.label1 = new System.Windows.Forms.Label();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.dgKds = new System.Windows.Forms.DataGrid();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.txtKdname = new System.Windows.Forms.TextBox();
            this.txtUserCname = new System.Windows.Forms.TextBox();
            this.lblKdname = new System.Windows.Forms.Label();
            this.lblUserCname = new System.Windows.Forms.Label();
            this.btnEditKd = new System.Windows.Forms.Button();
            this.btnSaveKd = new System.Windows.Forms.Button();
            this.btnDelKd = new System.Windows.Forms.Button();
            this.btnAddKd = new System.Windows.Forms.Button();
            this.lblExit = new System.Windows.Forms.Label();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgKds)).BeginInit();
            this.groupBox2.SuspendLayout();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.BackColor = System.Drawing.Color.Transparent;
            this.label1.ForeColor = System.Drawing.Color.White;
            this.label1.Location = new System.Drawing.Point(210, 9);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(100, 16);
            this.label1.TabIndex = 20;
            this.label1.Text = "考  点  管  理";
            this.label1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // groupBox1
            // 
            this.groupBox1.BackColor = System.Drawing.Color.Transparent;
            this.groupBox1.Controls.Add(this.dgKds);
            this.groupBox1.Location = new System.Drawing.Point(12, 47);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(495, 192);
            this.groupBox1.TabIndex = 21;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "考点列表";
            // 
            // dgKds
            // 
            this.dgKds.BackColor = System.Drawing.SystemColors.HighlightText;
            this.dgKds.BackgroundColor = System.Drawing.SystemColors.ActiveCaptionText;
            this.dgKds.CaptionVisible = false;
            this.dgKds.DataMember = "";
            this.dgKds.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dgKds.HeaderForeColor = System.Drawing.SystemColors.ControlText;
            this.dgKds.Location = new System.Drawing.Point(3, 17);
            this.dgKds.Name = "dgKds";
            this.dgKds.ReadOnly = true;
            this.dgKds.Size = new System.Drawing.Size(489, 172);
            this.dgKds.TabIndex = 0;
            // 
            // groupBox2
            // 
            this.groupBox2.BackColor = System.Drawing.Color.Transparent;
            this.groupBox2.Controls.Add(this.txtKdname);
            this.groupBox2.Controls.Add(this.txtUserCname);
            this.groupBox2.Controls.Add(this.lblKdname);
            this.groupBox2.Controls.Add(this.lblUserCname);
            this.groupBox2.Location = new System.Drawing.Point(15, 254);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(495, 56);
            this.groupBox2.TabIndex = 22;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "考点详细信息";
            this.groupBox2.Enter += new System.EventHandler(this.groupBox2_Enter);
            // 
            // txtKdname
            // 
            this.txtKdname.Location = new System.Drawing.Point(64, 24);
            this.txtKdname.MaxLength = 20;
            this.txtKdname.Multiline = true;
            this.txtKdname.Name = "txtKdname";
            this.txtKdname.Size = new System.Drawing.Size(96, 21);
            this.txtKdname.TabIndex = 14;
            // 
            // txtUserCname
            // 
            this.txtUserCname.Location = new System.Drawing.Point(310, 24);
            this.txtUserCname.MaxLength = 25;
            this.txtUserCname.Multiline = true;
            this.txtUserCname.Name = "txtUserCname";
            this.txtUserCname.Size = new System.Drawing.Size(162, 21);
            this.txtUserCname.TabIndex = 13;
            // 
            // lblKdname
            // 
            this.lblKdname.BackColor = System.Drawing.Color.Transparent;
            this.lblKdname.Location = new System.Drawing.Point(8, 24);
            this.lblKdname.Name = "lblKdname";
            this.lblKdname.Size = new System.Drawing.Size(56, 23);
            this.lblKdname.TabIndex = 12;
            this.lblKdname.Text = "考点名:";
            this.lblKdname.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblUserCname
            // 
            this.lblUserCname.BackColor = System.Drawing.Color.Transparent;
            this.lblUserCname.Location = new System.Drawing.Point(227, 24);
            this.lblUserCname.Name = "lblUserCname";
            this.lblUserCname.Size = new System.Drawing.Size(68, 23);
            this.lblUserCname.TabIndex = 11;
            this.lblUserCname.Text = "考点描述:";
            this.lblUserCname.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // btnEditKd
            // 
            this.btnEditKd.BackColor = System.Drawing.Color.Transparent;
            this.btnEditKd.Location = new System.Drawing.Point(171, 323);
            this.btnEditKd.Name = "btnEditKd";
            this.btnEditKd.Size = new System.Drawing.Size(75, 23);
            this.btnEditKd.TabIndex = 26;
            this.btnEditKd.Text = "编辑";
            this.btnEditKd.UseVisualStyleBackColor = false;
            this.btnEditKd.Click += new System.EventHandler(this.btnEditKd_Click);
            // 
            // btnSaveKd
            // 
            this.btnSaveKd.BackColor = System.Drawing.Color.Transparent;
            this.btnSaveKd.Location = new System.Drawing.Point(379, 323);
            this.btnSaveKd.Name = "btnSaveKd";
            this.btnSaveKd.Size = new System.Drawing.Size(72, 23);
            this.btnSaveKd.TabIndex = 25;
            this.btnSaveKd.Text = "保存";
            this.btnSaveKd.UseVisualStyleBackColor = false;
            this.btnSaveKd.Click += new System.EventHandler(this.btnSaveKd_Click);
            // 
            // btnDelKd
            // 
            this.btnDelKd.BackColor = System.Drawing.Color.Transparent;
            this.btnDelKd.Location = new System.Drawing.Point(275, 323);
            this.btnDelKd.Name = "btnDelKd";
            this.btnDelKd.Size = new System.Drawing.Size(75, 23);
            this.btnDelKd.TabIndex = 24;
            this.btnDelKd.Text = "删除";
            this.btnDelKd.UseVisualStyleBackColor = false;
            this.btnDelKd.Click += new System.EventHandler(this.btnDelKd_Click);
            // 
            // btnAddKd
            // 
            this.btnAddKd.BackColor = System.Drawing.Color.Transparent;
            this.btnAddKd.Location = new System.Drawing.Point(67, 323);
            this.btnAddKd.Name = "btnAddKd";
            this.btnAddKd.Size = new System.Drawing.Size(75, 23);
            this.btnAddKd.TabIndex = 23;
            this.btnAddKd.Text = "添加";
            this.btnAddKd.UseVisualStyleBackColor = false;
            this.btnAddKd.Click += new System.EventHandler(this.btnAddKd_Click);
            // 
            // lblExit
            // 
            this.lblExit.BackColor = System.Drawing.Color.Transparent;
            this.lblExit.Location = new System.Drawing.Point(504, -2);
            this.lblExit.Name = "lblExit";
            this.lblExit.Size = new System.Drawing.Size(16, 24);
            this.lblExit.TabIndex = 27;
            this.lblExit.TextAlign = System.Drawing.ContentAlignment.BottomRight;
            this.lblExit.Click += new System.EventHandler(this.lblExit_Click);
            // 
            // FrmKdManage
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
            this.ClientSize = new System.Drawing.Size(522, 358);
            this.ControlBox = false;
            this.Controls.Add(this.lblExit);
            this.Controls.Add(this.btnEditKd);
            this.Controls.Add(this.btnSaveKd);
            this.Controls.Add(this.btnDelKd);
            this.Controls.Add(this.btnAddKd);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.label1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FrmKdManage";
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "考点管理";
            this.Load += new System.EventHandler(this.FrmKdManage_Load);
            this.groupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dgKds)).EndInit();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.DataGrid dgKds;
        private System.Windows.Forms.GroupBox groupBox2;
        private System.Windows.Forms.TextBox txtKdname;
        private System.Windows.Forms.TextBox txtUserCname;
        private System.Windows.Forms.Label lblKdname;
        private System.Windows.Forms.Label lblUserCname;
        private System.Windows.Forms.Button btnEditKd;
        private System.Windows.Forms.Button btnSaveKd;
        private System.Windows.Forms.Button btnDelKd;
        private System.Windows.Forms.Button btnAddKd;
        private System.Windows.Forms.Label lblExit;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -