ModeMenuControl.Designer.cs 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. 
  2. namespace PaintDotNet.Preview2
  3. {
  4. partial class ModeMenuControl
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region 组件设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.button3 = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // button1
  35. //
  36. this.button1.Dock = System.Windows.Forms.DockStyle.Top;
  37. this.button1.Location = new System.Drawing.Point(6, 6);
  38. this.button1.Name = "button1";
  39. this.button1.Size = new System.Drawing.Size(133, 30);
  40. this.button1.TabIndex = 0;
  41. this.button1.Text = "图像采集";
  42. this.button1.UseVisualStyleBackColor = true;
  43. this.button1.Click += new System.EventHandler(this.button1_Click);
  44. //
  45. // button2
  46. //
  47. this.button2.Dock = System.Windows.Forms.DockStyle.Top;
  48. this.button2.Location = new System.Drawing.Point(6, 36);
  49. this.button2.Name = "button2";
  50. this.button2.Size = new System.Drawing.Size(133, 30);
  51. this.button2.TabIndex = 1;
  52. this.button2.Text = "图像拼接";
  53. this.button2.UseVisualStyleBackColor = true;
  54. this.button2.Click += new System.EventHandler(this.button2_Click);
  55. //
  56. // button3
  57. //
  58. this.button3.Dock = System.Windows.Forms.DockStyle.Top;
  59. this.button3.Location = new System.Drawing.Point(6, 66);
  60. this.button3.Name = "button3";
  61. this.button3.Size = new System.Drawing.Size(133, 30);
  62. this.button3.TabIndex = 2;
  63. this.button3.Text = "景深扩展";
  64. this.button3.UseVisualStyleBackColor = true;
  65. this.button3.Click += new System.EventHandler(this.button3_Click);
  66. //
  67. // ModeMenuControl
  68. //
  69. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  70. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  71. this.BackColor = System.Drawing.Color.White;
  72. this.Controls.Add(this.button3);
  73. this.Controls.Add(this.button2);
  74. this.Controls.Add(this.button1);
  75. this.Margin = new System.Windows.Forms.Padding(4);
  76. this.Name = "ModeMenuControl";
  77. this.Padding = new System.Windows.Forms.Padding(6);
  78. this.Size = new System.Drawing.Size(145, 103);
  79. this.ResumeLayout(false);
  80. }
  81. #endregion
  82. private System.Windows.Forms.Button button1;
  83. private System.Windows.Forms.Button button2;
  84. private System.Windows.Forms.Button button3;
  85. }
  86. }