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

📄 frmmain.designer.cs

📁 清华大学出版社出版的 移动应用开发宝典 张大威(2008)的附书源代码
💻 CS
字号:
namespace CodeForChapter2
{
  partial class frmMain
  {
    /// <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.menuItem1 = new System.Windows.Forms.MenuItem();
      this.menuItem2 = new System.Windows.Forms.MenuItem();
      this.menuItem3 = new System.Windows.Forms.MenuItem();
      this.menuItem4 = new System.Windows.Forms.MenuItem();
      this.menuItem5 = new System.Windows.Forms.MenuItem();
      this.menuItem6 = new System.Windows.Forms.MenuItem();
      this.menuItem8 = new System.Windows.Forms.MenuItem();
      this.menuItem7 = new System.Windows.Forms.MenuItem();
      this.label1 = new System.Windows.Forms.Label();
      this.label2 = new System.Windows.Forms.Label();
      this.button1 = new System.Windows.Forms.Button();
      this.button3 = new System.Windows.Forms.Button();
      this.checkBox1 = new System.Windows.Forms.CheckBox();
      this.button2 = new System.Windows.Forms.Button();
      this.SuspendLayout();
      // 
      // mainMenu1
      // 
      this.mainMenu1.MenuItems.Add(this.menuItem1);
      this.mainMenu1.MenuItems.Add(this.menuItem4);
      // 
      // menuItem1
      // 
      this.menuItem1.MenuItems.Add(this.menuItem2);
      this.menuItem1.MenuItems.Add(this.menuItem3);
      this.menuItem1.Text = "Cursor";
      // 
      // menuItem2
      // 
      this.menuItem2.Text = "Busy";
      this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
      // 
      // menuItem3
      // 
      this.menuItem3.Text = "Default";
      this.menuItem3.Click += new System.EventHandler(this.menuItem3_Click);
      // 
      // menuItem4
      // 
      this.menuItem4.MenuItems.Add(this.menuItem5);
      this.menuItem4.MenuItems.Add(this.menuItem6);
      this.menuItem4.MenuItems.Add(this.menuItem8);
      this.menuItem4.MenuItems.Add(this.menuItem7);
      this.menuItem4.Text = "Orientation";
      // 
      // menuItem5
      // 
      this.menuItem5.Text = "0 degrees";
      this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
      // 
      // menuItem6
      // 
      this.menuItem6.Text = "90 degrees";
      this.menuItem6.Click += new System.EventHandler(this.menuItem6_Click);
      // 
      // menuItem8
      // 
      this.menuItem8.Text = "180 degrees";
      this.menuItem8.Click += new System.EventHandler(this.menuItem8_Click);
      // 
      // menuItem7
      // 
      this.menuItem7.Text = "270 degrees";
      this.menuItem7.Click += new System.EventHandler(this.menuItem7_Click);
      // 
      // label1
      // 
      this.label1.Location = new System.Drawing.Point(3, 9);
      this.label1.Name = "label1";
      this.label1.Size = new System.Drawing.Size(234, 20);
      this.label1.Text = "Orientation is";
      // 
      // label2
      // 
      this.label2.Location = new System.Drawing.Point(3, 29);
      this.label2.Name = "label2";
      this.label2.Size = new System.Drawing.Size(234, 20);
      this.label2.Text = "Screen size is";
      // 
      // button1
      // 
      this.button1.Location = new System.Drawing.Point(3, 68);
      this.button1.Name = "button1";
      this.button1.Size = new System.Drawing.Size(234, 20);
      this.button1.TabIndex = 2;
      this.button1.Text = "Send mouse_event";
      this.button1.Click += new System.EventHandler(this.button1_Click);
      // 
      // button3
      // 
      this.button3.Location = new System.Drawing.Point(3, 151);
      this.button3.Name = "button3";
      this.button3.Size = new System.Drawing.Size(95, 20);
      this.button3.TabIndex = 4;
      this.button3.Text = "Show";
      this.button3.Click += new System.EventHandler(this.button3_Click);
      // 
      // checkBox1
      // 
      this.checkBox1.Location = new System.Drawing.Point(104, 151);
      this.checkBox1.Name = "checkBox1";
      this.checkBox1.Size = new System.Drawing.Size(133, 20);
      this.checkBox1.TabIndex = 5;
      this.checkBox1.Text = "modal";
      // 
      // button2
      // 
      this.button2.Location = new System.Drawing.Point(4, 194);
      this.button2.Name = "button2";
      this.button2.Size = new System.Drawing.Size(153, 20);
      this.button2.TabIndex = 8;
      this.button2.Text = "Show The Wrong Way";
      this.button2.Click += new System.EventHandler(this.button2_Click);
      // 
      // frmMain
      // 
      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.Controls.Add(this.button2);
      this.Controls.Add(this.checkBox1);
      this.Controls.Add(this.button3);
      this.Controls.Add(this.button1);
      this.Controls.Add(this.label2);
      this.Controls.Add(this.label1);
      this.Menu = this.mainMenu1;
      this.Name = "frmMain";
      this.Text = "frmMain";
      this.Resize += new System.EventHandler(this.frmMain_Resize);
      this.ResumeLayout(false);

    }

    #endregion

    private System.Windows.Forms.MenuItem menuItem1;
    private System.Windows.Forms.MenuItem menuItem2;
    private System.Windows.Forms.MenuItem menuItem3;
    private System.Windows.Forms.MenuItem menuItem4;
    private System.Windows.Forms.MenuItem menuItem5;
    private System.Windows.Forms.MenuItem menuItem6;
    private System.Windows.Forms.MenuItem menuItem8;
    private System.Windows.Forms.MenuItem menuItem7;
    private System.Windows.Forms.Label label1;
    private System.Windows.Forms.Label label2;
    private System.Windows.Forms.Button button1;
    private System.Windows.Forms.Button button3;
    private System.Windows.Forms.CheckBox checkBox1;
    private System.Windows.Forms.Button button2;
  }
}

⌨️ 快捷键说明

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