12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- namespace WindowsFormsDemo1
- {
- partial class Form3
- {
- /// <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.menuStrip1 = new System.Windows.Forms.MenuStrip();
- this.水平平铺ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.垂直平铺ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.menuStrip1.SuspendLayout();
- this.SuspendLayout();
- //
- // menuStrip1
- //
- this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
- this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.水平平铺ToolStripMenuItem,
- this.垂直平铺ToolStripMenuItem});
- this.menuStrip1.Location = new System.Drawing.Point(0, 0);
- this.menuStrip1.Name = "menuStrip1";
- this.menuStrip1.Size = new System.Drawing.Size(800, 30);
- this.menuStrip1.TabIndex = 1;
- this.menuStrip1.Text = "menuStrip1";
- //
- // 水平平铺ToolStripMenuItem
- //
- this.水平平铺ToolStripMenuItem.Name = "水平平铺ToolStripMenuItem";
- this.水平平铺ToolStripMenuItem.Size = new System.Drawing.Size(83, 24);
- this.水平平铺ToolStripMenuItem.Text = "水平平铺";
- //
- // 垂直平铺ToolStripMenuItem
- //
- this.垂直平铺ToolStripMenuItem.Name = "垂直平铺ToolStripMenuItem";
- this.垂直平铺ToolStripMenuItem.Size = new System.Drawing.Size(83, 26);
- this.垂直平铺ToolStripMenuItem.Text = "垂直平铺";
- //
- // Form3
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(800, 450);
- this.Controls.Add(this.menuStrip1);
- this.IsMdiContainer = true;
- this.MainMenuStrip = this.menuStrip1;
- this.Name = "Form3";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "Form3";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form3_FormClosing);
- this.Load += new System.EventHandler(this.Form3_Load);
- this.Click += new System.EventHandler(this.Form3_Click);
- this.menuStrip1.ResumeLayout(false);
- this.menuStrip1.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.MenuStrip menuStrip1;
- private System.Windows.Forms.ToolStripMenuItem 水平平铺ToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem 垂直平铺ToolStripMenuItem;
- }
- }
|