TestForm.Designer.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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.ReloadToolStripButton = new System.Windows.Forms.ToolStripButton();
  32. this.MainToolStrip.SuspendLayout();
  33. this.SuspendLayout();
  34. //
  35. // MainToolStrip
  36. //
  37. this.MainToolStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
  38. this.MainToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  39. this.ReloadToolStripButton,
  40. this.F12ToolStripButton});
  41. this.MainToolStrip.Location = new System.Drawing.Point(0, 0);
  42. this.MainToolStrip.Name = "MainToolStrip";
  43. this.MainToolStrip.Size = new System.Drawing.Size(1002, 25);
  44. this.MainToolStrip.TabIndex = 0;
  45. this.MainToolStrip.Text = "toolStrip1";
  46. //
  47. // F12ToolStripButton
  48. //
  49. this.F12ToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  50. this.F12ToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
  51. this.F12ToolStripButton.Name = "F12ToolStripButton";
  52. this.F12ToolStripButton.Size = new System.Drawing.Size(32, 22);
  53. this.F12ToolStripButton.Text = "F12";
  54. this.F12ToolStripButton.Click += new System.EventHandler(this.F12ToolStripButton_Click);
  55. //
  56. // MainPanel
  57. //
  58. this.MainPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  59. this.MainPanel.Location = new System.Drawing.Point(0, 25);
  60. this.MainPanel.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  61. this.MainPanel.Name = "MainPanel";
  62. this.MainPanel.Size = new System.Drawing.Size(1002, 516);
  63. this.MainPanel.TabIndex = 1;
  64. //
  65. // ReloadToolStripButton
  66. //
  67. this.ReloadToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  68. this.ReloadToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
  69. this.ReloadToolStripButton.Name = "ReloadToolStripButton";
  70. this.ReloadToolStripButton.Size = new System.Drawing.Size(53, 22);
  71. this.ReloadToolStripButton.Text = "Reload";
  72. this.ReloadToolStripButton.Click += new System.EventHandler(this.ReloadToolStripButton_Click);
  73. //
  74. // TestForm
  75. //
  76. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  77. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  78. this.ClientSize = new System.Drawing.Size(1002, 541);
  79. this.Controls.Add(this.MainPanel);
  80. this.Controls.Add(this.MainToolStrip);
  81. this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  82. this.Name = "TestForm";
  83. this.Text = "Tests Form";
  84. this.Shown += new System.EventHandler(this.DemoForm_Shown);
  85. this.MainToolStrip.ResumeLayout(false);
  86. this.MainToolStrip.PerformLayout();
  87. this.ResumeLayout(false);
  88. this.PerformLayout();
  89. }
  90. #endregion
  91. private System.Windows.Forms.ToolStrip MainToolStrip;
  92. private System.Windows.Forms.ToolStripButton F12ToolStripButton;
  93. private System.Windows.Forms.Panel MainPanel;
  94. private System.Windows.Forms.ToolStripButton ReloadToolStripButton;
  95. }
  96. }