Excel.Designer.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. namespace WindowsFormsWordExcelDemo
  2. {
  3. partial class Excel
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.richTextBox1 = new System.Windows.Forms.RichTextBox();
  29. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  30. this.文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  31. this.打开ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  32. this.menuStrip1.SuspendLayout();
  33. this.SuspendLayout();
  34. //
  35. // richTextBox1
  36. //
  37. this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  38. this.richTextBox1.Location = new System.Drawing.Point(0, 28);
  39. this.richTextBox1.Name = "richTextBox1";
  40. this.richTextBox1.Size = new System.Drawing.Size(595, 285);
  41. this.richTextBox1.TabIndex = 3;
  42. this.richTextBox1.Text = "";
  43. //
  44. // menuStrip1
  45. //
  46. this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
  47. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  48. this.文件ToolStripMenuItem});
  49. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  50. this.menuStrip1.Name = "menuStrip1";
  51. this.menuStrip1.Size = new System.Drawing.Size(595, 28);
  52. this.menuStrip1.TabIndex = 2;
  53. this.menuStrip1.Text = "menuStrip1";
  54. //
  55. // 文件ToolStripMenuItem
  56. //
  57. this.文件ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  58. this.打开ToolStripMenuItem});
  59. this.文件ToolStripMenuItem.Name = "文件ToolStripMenuItem";
  60. this.文件ToolStripMenuItem.Size = new System.Drawing.Size(53, 24);
  61. this.文件ToolStripMenuItem.Text = "文件";
  62. //
  63. // 打开ToolStripMenuItem
  64. //
  65. this.打开ToolStripMenuItem.Name = "打开ToolStripMenuItem";
  66. this.打开ToolStripMenuItem.Size = new System.Drawing.Size(224, 26);
  67. this.打开ToolStripMenuItem.Text = "打开";
  68. this.打开ToolStripMenuItem.Click += new System.EventHandler(this.打开ToolStripMenuItem_Click);
  69. //
  70. // Excel
  71. //
  72. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  73. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  74. this.ClientSize = new System.Drawing.Size(595, 313);
  75. this.Controls.Add(this.richTextBox1);
  76. this.Controls.Add(this.menuStrip1);
  77. this.Name = "Excel";
  78. this.Text = "Excel";
  79. this.menuStrip1.ResumeLayout(false);
  80. this.menuStrip1.PerformLayout();
  81. this.ResumeLayout(false);
  82. this.PerformLayout();
  83. }
  84. #endregion
  85. private System.Windows.Forms.RichTextBox richTextBox1;
  86. private System.Windows.Forms.MenuStrip menuStrip1;
  87. private System.Windows.Forms.ToolStripMenuItem 文件ToolStripMenuItem;
  88. private System.Windows.Forms.ToolStripMenuItem 打开ToolStripMenuItem;
  89. }
  90. }