filterdialog.designer.cs

来自「移动设备的 LINQ 编程介绍 .NET Compact Framework 版」· CS 代码 · 共 112 行

CS
112
字号
namespace Demo4___LinqToResultSet
{
    partial class FilterDialog
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;
        private System.Windows.Forms.MainMenu mainMenu1;

        /// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
			this.mniOk = new System.Windows.Forms.MenuItem();
			this.mniCancel = new System.Windows.Forms.MenuItem();
			this.label1 = new System.Windows.Forms.Label();
			this.comboBox1 = new System.Windows.Forms.ComboBox();
			this.SuspendLayout();
			// 
			// mainMenu1
			// 
			this.mainMenu1.MenuItems.Add(this.mniOk);
			this.mainMenu1.MenuItems.Add(this.mniCancel);
			// 
			// mniOk
			// 
			this.mniOk.Text = "OK";
			this.mniOk.Click += new System.EventHandler(this.mniOk_Click);
			// 
			// mniCancel
			// 
			this.mniCancel.Text = "Cancel";
			this.mniCancel.Click += new System.EventHandler(this.mniCancel_Click);
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(21, 40);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(100, 20);
			this.label1.Text = "Select Country:";
			// 
			// comboBox1
			// 
			this.comboBox1.Items.Add("Argentina");
			this.comboBox1.Items.Add("Austria");
			this.comboBox1.Items.Add("Belgium");
			this.comboBox1.Items.Add("Brazil");
			this.comboBox1.Items.Add("Canada");
			this.comboBox1.Items.Add("Denmark");
			this.comboBox1.Items.Add("Finland");
			this.comboBox1.Items.Add("France");
			this.comboBox1.Items.Add("Germany");
			this.comboBox1.Items.Add("Ireland");
			this.comboBox1.Items.Add("Italy");
			this.comboBox1.Items.Add("Mexico");
			this.comboBox1.Items.Add("Norway");
			this.comboBox1.Items.Add("Poland");
			this.comboBox1.Items.Add("Portugal");
			this.comboBox1.Items.Add("Spain");
			this.comboBox1.Items.Add("Sweden");
			this.comboBox1.Items.Add("Switzerland");
			this.comboBox1.Items.Add("UK");
			this.comboBox1.Items.Add("USA");
			this.comboBox1.Items.Add("Venezuela");
			this.comboBox1.Location = new System.Drawing.Point(21, 70);
			this.comboBox1.Name = "comboBox1";
			this.comboBox1.Size = new System.Drawing.Size(176, 22);
			this.comboBox1.TabIndex = 1;
			// 
			// FilterDialog
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
			this.AutoScroll = true;
			this.ClientSize = new System.Drawing.Size(240, 268);
			this.ControlBox = false;
			this.Controls.Add(this.comboBox1);
			this.Controls.Add(this.label1);
			this.Menu = this.mainMenu1;
			this.Name = "FilterDialog";
			this.Text = "Select Country";
			this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.MenuItem mniOk;
        private System.Windows.Forms.MenuItem mniCancel;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.ComboBox comboBox1;
    }
}

⌨️ 快捷键说明

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