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

📄 form1.designer.cs

📁 城市公交路线查询
💻 CS
字号:
namespace BYBUS
{
    partial class Form1
    {
        /// <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()
        {
            this.skinEngine1 = new Sunisoft.IrisSkin.SkinEngine(((System.ComponentModel.Component)(this)));
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.radBlackStyle = new System.Windows.Forms.RadioButton();
            this.radBlueStyle = new System.Windows.Forms.RadioButton();
            this.radGreenStyle = new System.Windows.Forms.RadioButton();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.txtStartstation = new System.Windows.Forms.TextBox();
            this.txtFinishstation = new System.Windows.Forms.TextBox();
            this.btnSeek = new System.Windows.Forms.Button();
            this.btnClose = new System.Windows.Forms.Button();
            this.button1 = new System.Windows.Forms.Button();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // skinEngine1
            // 
            this.skinEngine1.SerialNumber = "";
            this.skinEngine1.SkinFile = null;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.radBlackStyle);
            this.groupBox1.Controls.Add(this.radBlueStyle);
            this.groupBox1.Controls.Add(this.radGreenStyle);
            this.groupBox1.Location = new System.Drawing.Point(12, 12);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(467, 100);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "风格选择";
            // 
            // radBlackStyle
            // 
            this.radBlackStyle.AutoSize = true;
            this.radBlackStyle.Location = new System.Drawing.Point(341, 42);
            this.radBlackStyle.Name = "radBlackStyle";
            this.radBlackStyle.Size = new System.Drawing.Size(71, 16);
            this.radBlackStyle.TabIndex = 2;
            this.radBlackStyle.Text = "黑色冷调";
            this.radBlackStyle.UseVisualStyleBackColor = true;
            this.radBlackStyle.CheckedChanged += new System.EventHandler(this.radBlackStyle_CheckedChanged);
            // 
            // radBlueStyle
            // 
            this.radBlueStyle.AutoSize = true;
            this.radBlueStyle.Location = new System.Drawing.Point(176, 42);
            this.radBlueStyle.Name = "radBlueStyle";
            this.radBlueStyle.Size = new System.Drawing.Size(71, 16);
            this.radBlueStyle.TabIndex = 1;
            this.radBlueStyle.Text = "蓝色经典";
            this.radBlueStyle.UseVisualStyleBackColor = true;
            this.radBlueStyle.CheckedChanged += new System.EventHandler(this.radBlueStyle_CheckedChanged);
            // 
            // radGreenStyle
            // 
            this.radGreenStyle.AutoSize = true;
            this.radGreenStyle.Checked = true;
            this.radGreenStyle.Location = new System.Drawing.Point(30, 42);
            this.radGreenStyle.Name = "radGreenStyle";
            this.radGreenStyle.Size = new System.Drawing.Size(71, 16);
            this.radGreenStyle.TabIndex = 0;
            this.radGreenStyle.TabStop = true;
            this.radGreenStyle.Text = "绿色风情";
            this.radGreenStyle.UseVisualStyleBackColor = true;
            this.radGreenStyle.CheckedChanged += new System.EventHandler(this.radDefaultStyle_CheckedChanged);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label1.Location = new System.Drawing.Point(103, 172);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(57, 12);
            this.label1.TabIndex = 1;
            this.label1.Text = "起点站:";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label2.Location = new System.Drawing.Point(103, 300);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(57, 12);
            this.label2.TabIndex = 2;
            this.label2.Text = "终点站:";
            // 
            // txtStartstation
            // 
            this.txtStartstation.AcceptsTab = true;
            this.txtStartstation.BackColor = System.Drawing.Color.GreenYellow;
            this.txtStartstation.Enabled = false;
            this.txtStartstation.Location = new System.Drawing.Point(236, 169);
            this.txtStartstation.Name = "txtStartstation";
            this.txtStartstation.Size = new System.Drawing.Size(100, 21);
            this.txtStartstation.TabIndex = 3;
            this.txtStartstation.Text = "请输入起点站名";
            this.txtStartstation.TextChanged += new System.EventHandler(this.txtStartstation_TextChanged);
            this.txtStartstation.Click += new System.EventHandler(this.txtStartstation_Click);
            // 
            // txtFinishstation
            // 
            this.txtFinishstation.AcceptsTab = true;
            this.txtFinishstation.BackColor = System.Drawing.Color.GreenYellow;
            this.txtFinishstation.Enabled = false;
            this.txtFinishstation.Location = new System.Drawing.Point(236, 297);
            this.txtFinishstation.Name = "txtFinishstation";
            this.txtFinishstation.Size = new System.Drawing.Size(100, 21);
            this.txtFinishstation.TabIndex = 4;
            this.txtFinishstation.Text = "请输入终点站名";
            this.txtFinishstation.Click += new System.EventHandler(this.txtFinishstation_Click);
            // 
            // btnSeek
            // 
            this.btnSeek.Enabled = false;
            this.btnSeek.Location = new System.Drawing.Point(105, 385);
            this.btnSeek.Name = "btnSeek";
            this.btnSeek.Size = new System.Drawing.Size(55, 23);
            this.btnSeek.TabIndex = 5;
            this.btnSeek.Text = "查询";
            this.btnSeek.UseVisualStyleBackColor = true;
            this.btnSeek.Click += new System.EventHandler(this.btnSeek_Click);
            // 
            // btnClose
            // 
            this.btnClose.Location = new System.Drawing.Point(282, 385);
            this.btnClose.Name = "btnClose";
            this.btnClose.Size = new System.Drawing.Size(54, 23);
            this.btnClose.TabIndex = 6;
            this.btnClose.Text = "关闭";
            this.btnClose.UseVisualStyleBackColor = true;
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(105, 385);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(55, 23);
            this.button1.TabIndex = 7;
            this.button1.Text = "初始化";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(491, 468);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.btnClose);
            this.Controls.Add(this.btnSeek);
            this.Controls.Add(this.txtFinishstation);
            this.Controls.Add(this.txtStartstation);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.groupBox1);
            this.Name = "Form1";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "公交线路查询系统";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private Sunisoft.IrisSkin.SkinEngine skinEngine1;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.RadioButton radBlackStyle;
        private System.Windows.Forms.RadioButton radBlueStyle;
        private System.Windows.Forms.RadioButton radGreenStyle;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.TextBox txtStartstation;
        private System.Windows.Forms.TextBox txtFinishstation;
        private System.Windows.Forms.Button btnSeek;
        private System.Windows.Forms.Button btnClose;
        private System.Windows.Forms.Button button1;
    }
}

⌨️ 快捷键说明

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