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

📄 sites.designer.cs

📁 章立民-visual stadio 2005 c#编程技巧
💻 CS
字号:
namespace CH9
{
    partial class Sites
    {
        /// <summary>
        /// 設計工具所需的變數。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清除任何使用中的資源。
        /// </summary>
        /// <param name="disposing">如果應該公開 Managed 資源則為 true,否則為 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form 設計工具產生的程式碼

        /// <summary>
        /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
        ///
        /// </summary>
        private void InitializeComponent()
        {
            this.btnOK = new System.Windows.Forms.Button();
            this.txtURL = new System.Windows.Forms.TextBox();
            this.txtWebSite = new System.Windows.Forms.TextBox();
            this.Label2 = new System.Windows.Forms.Label();
            this.Label1 = new System.Windows.Forms.Label();
            this.ColumnHeader2 = new System.Windows.Forms.ColumnHeader();
            this.ColumnHeader1 = new System.Windows.Forms.ColumnHeader();
            this.btnRemoveSite = new System.Windows.Forms.Button();
            this.btnAddSite = new System.Windows.Forms.Button();
            this.lvwWebSites = new System.Windows.Forms.ListView();
            this.SuspendLayout();
            // 
            // btnOK
            // 
            this.btnOK.Location = new System.Drawing.Point(261, 357);
            this.btnOK.Name = "btnOK";
            this.btnOK.Size = new System.Drawing.Size(75, 35);
            this.btnOK.TabIndex = 15;
            this.btnOK.Text = "确定";
            this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
            // 
            // txtURL
            // 
            this.txtURL.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
            this.txtURL.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.AllUrl;
            this.txtURL.Location = new System.Drawing.Point(112, 40);
            this.txtURL.Multiline = true;
            this.txtURL.Name = "txtURL";
            this.txtURL.Size = new System.Drawing.Size(470, 25);
            this.txtURL.TabIndex = 14;
            // 
            // txtWebSite
            // 
            this.txtWebSite.Location = new System.Drawing.Point(112, 6);
            this.txtWebSite.Name = "txtWebSite";
            this.txtWebSite.Size = new System.Drawing.Size(470, 21);
            this.txtWebSite.TabIndex = 13;
            // 
            // Label2
            // 
            this.Label2.AutoSize = true;
            this.Label2.Location = new System.Drawing.Point(8, 45);
            this.Label2.Name = "Label2";
            this.Label2.Size = new System.Drawing.Size(89, 12);
            this.Label2.TabIndex = 12;
            this.Label2.Text = " 地址(URL):";
            // 
            // Label1
            // 
            this.Label1.AutoSize = true;
            this.Label1.Location = new System.Drawing.Point(36, 11);
            this.Label1.Name = "Label1";
            this.Label1.Size = new System.Drawing.Size(65, 12);
            this.Label1.TabIndex = 11;
            this.Label1.Text = "网站名称:";
            // 
            // ColumnHeader2
            // 
            this.ColumnHeader2.Text = "地址(URL)";
            this.ColumnHeader2.Width = 408;
            // 
            // ColumnHeader1
            // 
            this.ColumnHeader1.Text = "网站名称";
            this.ColumnHeader1.Width = 200;
            // 
            // btnRemoveSite
            // 
            this.btnRemoveSite.Location = new System.Drawing.Point(227, 309);
            this.btnRemoveSite.Name = "btnRemoveSite";
            this.btnRemoveSite.Size = new System.Drawing.Size(137, 36);
            this.btnRemoveSite.TabIndex = 10;
            this.btnRemoveSite.Text = "删除此网站";
            this.btnRemoveSite.Click += new System.EventHandler(this.btnRemoveSite_Click);
            // 
            // btnAddSite
            // 
            this.btnAddSite.Location = new System.Drawing.Point(234, 71);
            this.btnAddSite.Name = "btnAddSite";
            this.btnAddSite.Size = new System.Drawing.Size(128, 36);
            this.btnAddSite.TabIndex = 9;
            this.btnAddSite.Text = "添加新的网站";
            this.btnAddSite.Click += new System.EventHandler(this.btnAddSite_Click);
            // 
            // lvwWebSites
            // 
            this.lvwWebSites.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.ColumnHeader1,
            this.ColumnHeader2});
            this.lvwWebSites.FullRowSelect = true;
            this.lvwWebSites.GridLines = true;
            this.lvwWebSites.Location = new System.Drawing.Point(12, 113);
            this.lvwWebSites.Name = "lvwWebSites";
            this.lvwWebSites.Size = new System.Drawing.Size(570, 188);
            this.lvwWebSites.TabIndex = 8;
            this.lvwWebSites.UseCompatibleStateImageBehavior = false;
            this.lvwWebSites.View = System.Windows.Forms.View.Details;
            // 
            // Sites
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(591, 399);
            this.Controls.Add(this.btnOK);
            this.Controls.Add(this.txtURL);
            this.Controls.Add(this.txtWebSite);
            this.Controls.Add(this.Label2);
            this.Controls.Add(this.Label1);
            this.Controls.Add(this.btnRemoveSite);
            this.Controls.Add(this.btnAddSite);
            this.Controls.Add(this.lvwWebSites);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "Sites";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Sites";
            this.Load += new System.EventHandler(this.Sites_Load);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        internal System.Windows.Forms.Button btnOK;
        internal System.Windows.Forms.TextBox txtURL;
        internal System.Windows.Forms.TextBox txtWebSite;
        internal System.Windows.Forms.Label Label2;
        internal System.Windows.Forms.Label Label1;
        internal System.Windows.Forms.ColumnHeader ColumnHeader2;
        internal System.Windows.Forms.ColumnHeader ColumnHeader1;
        internal System.Windows.Forms.Button btnRemoveSite;
        internal System.Windows.Forms.Button btnAddSite;
        internal System.Windows.Forms.ListView lvwWebSites;
    }
}

⌨️ 快捷键说明

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