TestForm.Designer.cs 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. namespace Cbdx.Tests
  2. {
  3. partial class TestForm
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.MainToolStrip = new System.Windows.Forms.ToolStrip();
  29. this.F12ToolStripButton = new System.Windows.Forms.ToolStripButton();
  30. this.MainPanel = new System.Windows.Forms.Panel();
  31. this.MainToolStrip.SuspendLayout();
  32. this.SuspendLayout();
  33. //
  34. // MainToolStrip
  35. //
  36. this.MainToolStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
  37. this.MainToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  38. this.F12ToolStripButton});
  39. this.MainToolStrip.Location = new System.Drawing.Point(0, 0);
  40. this.MainToolStrip.Name = "MainToolStrip";
  41. this.MainToolStrip.Size = new System.Drawing.Size(1336, 27);
  42. this.MainToolStrip.TabIndex = 0;
  43. this.MainToolStrip.Text = "toolStrip1";
  44. //
  45. // F12ToolStripButton
  46. //
  47. this.F12ToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  48. this.F12ToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
  49. this.F12ToolStripButton.Name = "F12ToolStripButton";
  50. this.F12ToolStripButton.Size = new System.Drawing.Size(39, 24);
  51. this.F12ToolStripButton.Text = "F12";
  52. this.F12ToolStripButton.Click += new System.EventHandler(this.F12ToolStripButton_Click);
  53. //
  54. // MainPanel
  55. //
  56. this.MainPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  57. this.MainPanel.Location = new System.Drawing.Point(0, 27);
  58. this.MainPanel.Name = "MainPanel";
  59. this.MainPanel.Size = new System.Drawing.Size(1336, 649);
  60. this.MainPanel.TabIndex = 1;
  61. //
  62. // DemoForm
  63. //
  64. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  65. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  66. this.ClientSize = new System.Drawing.Size(1336, 676);
  67. this.Controls.Add(this.MainPanel);
  68. this.Controls.Add(this.MainToolStrip);
  69. this.Name = "DemoForm";
  70. this.Text = "Form1";
  71. this.Shown += new System.EventHandler(this.DemoForm_Shown);
  72. this.MainToolStrip.ResumeLayout(false);
  73. this.MainToolStrip.PerformLayout();
  74. this.ResumeLayout(false);
  75. this.PerformLayout();
  76. }
  77. #endregion
  78. private System.Windows.Forms.ToolStrip MainToolStrip;
  79. private System.Windows.Forms.ToolStripButton F12ToolStripButton;
  80. private System.Windows.Forms.Panel MainPanel;
  81. }
  82. }