AdjustExposureControl.Designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. namespace PaintDotNet.ImageCollect
  2. {
  3. partial class AdjustExposureControl
  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.cmpLight = new PaintDotNet.ImageCollect.CameraParamBar();
  30. this.panel1 = new System.Windows.Forms.Panel();
  31. this.panel2 = new System.Windows.Forms.Panel();
  32. this.lblMax = new System.Windows.Forms.Label();
  33. this.lblMin = new System.Windows.Forms.Label();
  34. this.tkbExposure = new System.Windows.Forms.TrackBar();
  35. this.txbExposure = new System.Windows.Forms.TextBox();
  36. this.lblUnit = new System.Windows.Forms.Label();
  37. this.label1 = new System.Windows.Forms.Label();
  38. this.lblExp = new System.Windows.Forms.Label();
  39. this.btnAutoExposureOnce = new System.Windows.Forms.Button();
  40. this.ckbAutoExposure = new System.Windows.Forms.CheckBox();
  41. this.groupBox2 = new System.Windows.Forms.GroupBox();
  42. this.cmpGain = new PaintDotNet.ImageCollect.CameraParamBar();
  43. this.groupBox1.SuspendLayout();
  44. this.panel1.SuspendLayout();
  45. this.panel2.SuspendLayout();
  46. ((System.ComponentModel.ISupportInitialize)(this.tkbExposure)).BeginInit();
  47. this.groupBox2.SuspendLayout();
  48. this.SuspendLayout();
  49. //
  50. // groupBox1
  51. //
  52. this.groupBox1.Controls.Add(this.cmpLight);
  53. this.groupBox1.Controls.Add(this.panel1);
  54. this.groupBox1.Controls.Add(this.btnAutoExposureOnce);
  55. this.groupBox1.Controls.Add(this.ckbAutoExposure);
  56. this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
  57. this.groupBox1.Location = new System.Drawing.Point(0, 0);
  58. this.groupBox1.Name = "groupBox1";
  59. this.groupBox1.Padding = new System.Windows.Forms.Padding(4);
  60. this.groupBox1.Size = new System.Drawing.Size(470, 154);
  61. this.groupBox1.TabIndex = 48;
  62. this.groupBox1.TabStop = false;
  63. this.groupBox1.Text = "曝光时间";
  64. //
  65. // cmpLight
  66. //
  67. this.cmpLight.AutoSize = true;
  68. this.cmpLight.Caption = "亮度";
  69. this.cmpLight.Dock = System.Windows.Forms.DockStyle.Top;
  70. this.cmpLight.Location = new System.Drawing.Point(4, 62);
  71. this.cmpLight.Name = "cmpLight";
  72. this.cmpLight.Padding = new System.Windows.Forms.Padding(2);
  73. this.cmpLight.Size = new System.Drawing.Size(462, 44);
  74. this.cmpLight.TabIndex = 68;
  75. this.cmpLight.unit = "";
  76. //
  77. // panel1
  78. //
  79. this.panel1.Controls.Add(this.panel2);
  80. this.panel1.Controls.Add(this.txbExposure);
  81. this.panel1.Controls.Add(this.lblUnit);
  82. this.panel1.Controls.Add(this.label1);
  83. this.panel1.Controls.Add(this.lblExp);
  84. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  85. this.panel1.Location = new System.Drawing.Point(4, 18);
  86. this.panel1.Name = "panel1";
  87. this.panel1.Size = new System.Drawing.Size(462, 44);
  88. this.panel1.TabIndex = 69;
  89. //
  90. // panel2
  91. //
  92. this.panel2.Controls.Add(this.lblMax);
  93. this.panel2.Controls.Add(this.lblMin);
  94. this.panel2.Controls.Add(this.tkbExposure);
  95. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  96. this.panel2.Location = new System.Drawing.Point(85, 0);
  97. this.panel2.Name = "panel2";
  98. this.panel2.Size = new System.Drawing.Size(277, 44);
  99. this.panel2.TabIndex = 10;
  100. //
  101. // lblMax
  102. //
  103. this.lblMax.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  104. this.lblMax.Location = new System.Drawing.Point(237, 24);
  105. this.lblMax.Name = "lblMax";
  106. this.lblMax.Size = new System.Drawing.Size(35, 12);
  107. this.lblMax.TabIndex = 2;
  108. this.lblMax.Text = "15s";
  109. this.lblMax.TextAlign = System.Drawing.ContentAlignment.TopRight;
  110. //
  111. // lblMin
  112. //
  113. this.lblMin.AutoSize = true;
  114. this.lblMin.Location = new System.Drawing.Point(9, 24);
  115. this.lblMin.Name = "lblMin";
  116. this.lblMin.Size = new System.Drawing.Size(35, 12);
  117. this.lblMin.TabIndex = 1;
  118. this.lblMin.Text = "130us";
  119. //
  120. // tkbExposure
  121. //
  122. this.tkbExposure.Dock = System.Windows.Forms.DockStyle.Fill;
  123. this.tkbExposure.Location = new System.Drawing.Point(0, 0);
  124. this.tkbExposure.Maximum = 100;
  125. this.tkbExposure.Name = "tkbExposure";
  126. this.tkbExposure.Size = new System.Drawing.Size(277, 44);
  127. this.tkbExposure.TabIndex = 0;
  128. this.tkbExposure.TickStyle = System.Windows.Forms.TickStyle.None;
  129. this.tkbExposure.Scroll += new System.EventHandler(this.tkbExposure_Scroll);
  130. //
  131. // txbExposure
  132. //
  133. this.txbExposure.Dock = System.Windows.Forms.DockStyle.Right;
  134. this.txbExposure.Location = new System.Drawing.Point(362, 0);
  135. this.txbExposure.Name = "txbExposure";
  136. this.txbExposure.Size = new System.Drawing.Size(60, 21);
  137. this.txbExposure.TabIndex = 9;
  138. this.txbExposure.Text = "0";
  139. this.txbExposure.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.baoGuangTBox_KeyPress);
  140. //
  141. // lblUnit
  142. //
  143. this.lblUnit.Dock = System.Windows.Forms.DockStyle.Right;
  144. this.lblUnit.Location = new System.Drawing.Point(422, 0);
  145. this.lblUnit.Name = "lblUnit";
  146. this.lblUnit.Padding = new System.Windows.Forms.Padding(0, 4, 0, 0);
  147. this.lblUnit.Size = new System.Drawing.Size(40, 44);
  148. this.lblUnit.TabIndex = 8;
  149. this.lblUnit.Text = "ms";
  150. //
  151. // label1
  152. //
  153. this.label1.Dock = System.Windows.Forms.DockStyle.Left;
  154. this.label1.Location = new System.Drawing.Point(74, 0);
  155. this.label1.Name = "label1";
  156. this.label1.Padding = new System.Windows.Forms.Padding(0, 4, 0, 0);
  157. this.label1.Size = new System.Drawing.Size(11, 44);
  158. this.label1.TabIndex = 7;
  159. this.label1.Text = ":";
  160. //
  161. // lblExp
  162. //
  163. this.lblExp.Dock = System.Windows.Forms.DockStyle.Left;
  164. this.lblExp.Location = new System.Drawing.Point(0, 0);
  165. this.lblExp.Name = "lblExp";
  166. this.lblExp.Padding = new System.Windows.Forms.Padding(0, 4, 0, 0);
  167. this.lblExp.Size = new System.Drawing.Size(74, 44);
  168. this.lblExp.TabIndex = 6;
  169. this.lblExp.Text = "ParmName";
  170. //
  171. // btnAutoExposureOnce
  172. //
  173. this.btnAutoExposureOnce.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  174. this.btnAutoExposureOnce.Location = new System.Drawing.Point(92, 114);
  175. this.btnAutoExposureOnce.Margin = new System.Windows.Forms.Padding(2);
  176. this.btnAutoExposureOnce.Name = "btnAutoExposureOnce";
  177. this.btnAutoExposureOnce.Size = new System.Drawing.Size(102, 25);
  178. this.btnAutoExposureOnce.TabIndex = 61;
  179. this.btnAutoExposureOnce.Text = "一次自动曝光";
  180. this.btnAutoExposureOnce.UseVisualStyleBackColor = true;
  181. this.btnAutoExposureOnce.Click += new System.EventHandler(this.btnAutoExposureOnce_Click);
  182. //
  183. // ckbAutoExposure
  184. //
  185. this.ckbAutoExposure.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  186. this.ckbAutoExposure.AutoSize = true;
  187. this.ckbAutoExposure.Location = new System.Drawing.Point(6, 119);
  188. this.ckbAutoExposure.Margin = new System.Windows.Forms.Padding(2);
  189. this.ckbAutoExposure.Name = "ckbAutoExposure";
  190. this.ckbAutoExposure.Size = new System.Drawing.Size(72, 16);
  191. this.ckbAutoExposure.TabIndex = 60;
  192. this.ckbAutoExposure.Text = "自动曝光";
  193. this.ckbAutoExposure.UseVisualStyleBackColor = true;
  194. this.ckbAutoExposure.Click += new System.EventHandler(this.ckbAutoExposure_Click);
  195. //
  196. // groupBox2
  197. //
  198. this.groupBox2.Controls.Add(this.cmpGain);
  199. this.groupBox2.Dock = System.Windows.Forms.DockStyle.Top;
  200. this.groupBox2.Location = new System.Drawing.Point(0, 154);
  201. this.groupBox2.Name = "groupBox2";
  202. this.groupBox2.Padding = new System.Windows.Forms.Padding(8);
  203. this.groupBox2.Size = new System.Drawing.Size(470, 71);
  204. this.groupBox2.TabIndex = 49;
  205. this.groupBox2.TabStop = false;
  206. this.groupBox2.Text = "增益值调整";
  207. //
  208. // cmpGain
  209. //
  210. this.cmpGain.AutoSize = true;
  211. this.cmpGain.Caption = "曝光增益";
  212. this.cmpGain.Dock = System.Windows.Forms.DockStyle.Top;
  213. this.cmpGain.Location = new System.Drawing.Point(8, 22);
  214. this.cmpGain.Name = "cmpGain";
  215. this.cmpGain.Padding = new System.Windows.Forms.Padding(2);
  216. this.cmpGain.Size = new System.Drawing.Size(454, 44);
  217. this.cmpGain.TabIndex = 70;
  218. this.cmpGain.unit = "";
  219. //
  220. // AdjustExposureControl
  221. //
  222. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  223. this.Controls.Add(this.groupBox2);
  224. this.Controls.Add(this.groupBox1);
  225. this.Margin = new System.Windows.Forms.Padding(2);
  226. this.Name = "AdjustExposureControl";
  227. this.Size = new System.Drawing.Size(470, 233);
  228. this.groupBox1.ResumeLayout(false);
  229. this.groupBox1.PerformLayout();
  230. this.panel1.ResumeLayout(false);
  231. this.panel1.PerformLayout();
  232. this.panel2.ResumeLayout(false);
  233. this.panel2.PerformLayout();
  234. ((System.ComponentModel.ISupportInitialize)(this.tkbExposure)).EndInit();
  235. this.groupBox2.ResumeLayout(false);
  236. this.groupBox2.PerformLayout();
  237. this.ResumeLayout(false);
  238. }
  239. #endregion
  240. private System.Windows.Forms.GroupBox groupBox1;
  241. private System.Windows.Forms.CheckBox ckbAutoExposure;
  242. private System.Windows.Forms.Button btnAutoExposureOnce;
  243. private CameraParamBar cmpLight;
  244. private System.Windows.Forms.GroupBox groupBox2;
  245. private CameraParamBar cmpGain;
  246. private System.Windows.Forms.Panel panel1;
  247. private System.Windows.Forms.Panel panel2;
  248. private System.Windows.Forms.Label lblMax;
  249. private System.Windows.Forms.Label lblMin;
  250. private System.Windows.Forms.TrackBar tkbExposure;
  251. private System.Windows.Forms.TextBox txbExposure;
  252. private System.Windows.Forms.Label lblUnit;
  253. private System.Windows.Forms.Label label1;
  254. private System.Windows.Forms.Label lblExp;
  255. }
  256. }