FrameCameraModeControl.Designer.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. namespace PaintDotNet.ImageCollect.CameraComponent
  2. {
  3. partial class FrameCameraModeControl
  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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.groupBox1 = new System.Windows.Forms.GroupBox();
  29. this.cameraComboBox = new System.Windows.Forms.ComboBox();
  30. this.rdoBlackWhite = new System.Windows.Forms.RadioButton();
  31. this.rdoColor = new System.Windows.Forms.RadioButton();
  32. this.groupBox1.SuspendLayout();
  33. this.SuspendLayout();
  34. //
  35. // groupBox1
  36. //
  37. this.groupBox1.Controls.Add(this.rdoColor);
  38. this.groupBox1.Controls.Add(this.rdoBlackWhite);
  39. this.groupBox1.Controls.Add(this.cameraComboBox);
  40. this.groupBox1.Location = new System.Drawing.Point(4, 4);
  41. this.groupBox1.Margin = new System.Windows.Forms.Padding(4);
  42. this.groupBox1.Name = "groupBox1";
  43. this.groupBox1.Padding = new System.Windows.Forms.Padding(4);
  44. this.groupBox1.Size = new System.Drawing.Size(619, 125);
  45. this.groupBox1.TabIndex = 2;
  46. this.groupBox1.TabStop = false;
  47. this.groupBox1.Text = "相机模式";
  48. //
  49. // cameraComboBox
  50. //
  51. this.cameraComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  52. this.cameraComboBox.FormattingEnabled = true;
  53. this.cameraComboBox.Location = new System.Drawing.Point(25, 66);
  54. this.cameraComboBox.Margin = new System.Windows.Forms.Padding(4);
  55. this.cameraComboBox.Name = "cameraComboBox";
  56. this.cameraComboBox.Size = new System.Drawing.Size(556, 23);
  57. this.cameraComboBox.TabIndex = 2;
  58. this.cameraComboBox.SelectedIndexChanged += new System.EventHandler(this.cameraComboBox_SelectedIndexChanged);
  59. //
  60. // rdoBlackWhite
  61. //
  62. this.rdoBlackWhite.AutoSize = true;
  63. this.rdoBlackWhite.Location = new System.Drawing.Point(46, 40);
  64. this.rdoBlackWhite.Name = "rdoBlackWhite";
  65. this.rdoBlackWhite.Size = new System.Drawing.Size(88, 19);
  66. this.rdoBlackWhite.TabIndex = 3;
  67. this.rdoBlackWhite.TabStop = true;
  68. this.rdoBlackWhite.Text = "黑白模式";
  69. this.rdoBlackWhite.UseVisualStyleBackColor = true;
  70. this.rdoBlackWhite.CheckedChanged += new System.EventHandler(this.rdoBlackWhite_CheckedChanged);
  71. //
  72. // rdoColor
  73. //
  74. this.rdoColor.AutoSize = true;
  75. this.rdoColor.Location = new System.Drawing.Point(466, 40);
  76. this.rdoColor.Name = "rdoColor";
  77. this.rdoColor.Size = new System.Drawing.Size(88, 19);
  78. this.rdoColor.TabIndex = 4;
  79. this.rdoColor.TabStop = true;
  80. this.rdoColor.Text = "彩色模式";
  81. this.rdoColor.UseVisualStyleBackColor = true;
  82. this.rdoColor.CheckedChanged += new System.EventHandler(this.rdoColor_CheckedChanged);
  83. //
  84. // FrameCameraModeControl
  85. //
  86. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  87. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  88. this.Controls.Add(this.groupBox1);
  89. this.Name = "FrameCameraModeControl";
  90. this.Size = new System.Drawing.Size(625, 132);
  91. this.groupBox1.ResumeLayout(false);
  92. this.groupBox1.PerformLayout();
  93. this.ResumeLayout(false);
  94. }
  95. #endregion
  96. private System.Windows.Forms.GroupBox groupBox1;
  97. private System.Windows.Forms.ComboBox cameraComboBox;
  98. private System.Windows.Forms.RadioButton rdoColor;
  99. private System.Windows.Forms.RadioButton rdoBlackWhite;
  100. }
  101. }