AdjustGainControl.Designer.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. namespace PaintDotNet.ImageCollect.CameraComponent
  2. {
  3. partial class AdjustGainControl
  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.groupBox2 = new System.Windows.Forms.GroupBox();
  29. this.txtGain = new System.Windows.Forms.TextBox();
  30. this.lblGainMin = new System.Windows.Forms.Label();
  31. this.lblGainMax = new System.Windows.Forms.Label();
  32. this.trbGain = new System.Windows.Forms.TrackBar();
  33. this.groupBox2.SuspendLayout();
  34. ((System.ComponentModel.ISupportInitialize)(this.trbGain)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // groupBox2
  38. //
  39. this.groupBox2.Controls.Add(this.txtGain);
  40. this.groupBox2.Controls.Add(this.lblGainMin);
  41. this.groupBox2.Controls.Add(this.lblGainMax);
  42. this.groupBox2.Controls.Add(this.trbGain);
  43. this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
  44. this.groupBox2.Location = new System.Drawing.Point(0, 0);
  45. this.groupBox2.Name = "groupBox2";
  46. this.groupBox2.Size = new System.Drawing.Size(455, 82);
  47. this.groupBox2.TabIndex = 18;
  48. this.groupBox2.TabStop = false;
  49. this.groupBox2.Text = "增益值调整";
  50. //
  51. // txtGain
  52. //
  53. this.txtGain.Location = new System.Drawing.Point(369, 21);
  54. this.txtGain.Name = "txtGain";
  55. this.txtGain.Size = new System.Drawing.Size(55, 21);
  56. this.txtGain.TabIndex = 36;
  57. this.txtGain.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtGain_KeyPress);
  58. //
  59. // lblGainMin
  60. //
  61. this.lblGainMin.AutoSize = true;
  62. this.lblGainMin.Location = new System.Drawing.Point(97, 54);
  63. this.lblGainMin.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  64. this.lblGainMin.Name = "lblGainMin";
  65. this.lblGainMin.Size = new System.Drawing.Size(11, 12);
  66. this.lblGainMin.TabIndex = 17;
  67. this.lblGainMin.Text = "0";
  68. //
  69. // lblGainMax
  70. //
  71. this.lblGainMax.AutoSize = true;
  72. this.lblGainMax.Location = new System.Drawing.Point(340, 54);
  73. this.lblGainMax.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  74. this.lblGainMax.Name = "lblGainMax";
  75. this.lblGainMax.Size = new System.Drawing.Size(23, 12);
  76. this.lblGainMax.TabIndex = 16;
  77. this.lblGainMax.Text = "255";
  78. //
  79. // trbGain
  80. //
  81. this.trbGain.Location = new System.Drawing.Point(89, 21);
  82. this.trbGain.Maximum = 255;
  83. this.trbGain.Name = "trbGain";
  84. this.trbGain.Size = new System.Drawing.Size(280, 45);
  85. this.trbGain.TabIndex = 15;
  86. this.trbGain.TickStyle = System.Windows.Forms.TickStyle.None;
  87. this.trbGain.Value = 10;
  88. this.trbGain.ValueChanged += new System.EventHandler(this.trbGain_ValueChanged);
  89. //
  90. // AdjustGainControl
  91. //
  92. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  93. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  94. this.Controls.Add(this.groupBox2);
  95. this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  96. this.Name = "AdjustGainControl";
  97. this.Size = new System.Drawing.Size(455, 82);
  98. this.groupBox2.ResumeLayout(false);
  99. this.groupBox2.PerformLayout();
  100. ((System.ComponentModel.ISupportInitialize)(this.trbGain)).EndInit();
  101. this.ResumeLayout(false);
  102. }
  103. #endregion
  104. private System.Windows.Forms.GroupBox groupBox2;
  105. private System.Windows.Forms.TextBox txtGain;
  106. private System.Windows.Forms.Label lblGainMin;
  107. private System.Windows.Forms.Label lblGainMax;
  108. private System.Windows.Forms.TrackBar trbGain;
  109. }
  110. }