123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- namespace WindowsFormsWordExcelDemo
- {
- partial class Excel
- {
- /// <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.richTextBox1 = new System.Windows.Forms.RichTextBox();
- 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();
- //
- // richTextBox1
- //
- this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.richTextBox1.Location = new System.Drawing.Point(0, 28);
- this.richTextBox1.Name = "richTextBox1";
- this.richTextBox1.Size = new System.Drawing.Size(595, 285);
- this.richTextBox1.TabIndex = 3;
- this.richTextBox1.Text = "";
- //
- // menuStrip1
- //
- this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
- this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.文件ToolStripMenuItem});
- this.menuStrip1.Location = new System.Drawing.Point(0, 0);
- this.menuStrip1.Name = "menuStrip1";
- this.menuStrip1.Size = new System.Drawing.Size(595, 28);
- this.menuStrip1.TabIndex = 2;
- this.menuStrip1.Text = "menuStrip1";
- //
- // 文件ToolStripMenuItem
- //
- this.文件ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.打开ToolStripMenuItem});
- this.文件ToolStripMenuItem.Name = "文件ToolStripMenuItem";
- this.文件ToolStripMenuItem.Size = new System.Drawing.Size(53, 24);
- this.文件ToolStripMenuItem.Text = "文件";
- //
- // 打开ToolStripMenuItem
- //
- this.打开ToolStripMenuItem.Name = "打开ToolStripMenuItem";
- this.打开ToolStripMenuItem.Size = new System.Drawing.Size(224, 26);
- this.打开ToolStripMenuItem.Text = "打开";
- this.打开ToolStripMenuItem.Click += new System.EventHandler(this.打开ToolStripMenuItem_Click);
- //
- // Excel
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(595, 313);
- this.Controls.Add(this.richTextBox1);
- this.Controls.Add(this.menuStrip1);
- this.Name = "Excel";
- this.Text = "Excel";
- this.menuStrip1.ResumeLayout(false);
- this.menuStrip1.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.RichTextBox richTextBox1;
- private System.Windows.Forms.MenuStrip menuStrip1;
- private System.Windows.Forms.ToolStripMenuItem 文件ToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem 打开ToolStripMenuItem;
- }
- }
|