IdentifyCameraForm.Designer.cs 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. namespace CCDCount.Forms
  2. {
  3. partial class IdentifyCameraForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.tabCameraControl = new System.Windows.Forms.TabControl();
  29. this.ImageShowBox = new System.Windows.Forms.PictureBox();
  30. ((System.ComponentModel.ISupportInitialize)(this.ImageShowBox)).BeginInit();
  31. this.SuspendLayout();
  32. //
  33. // tabCameraControl
  34. //
  35. this.tabCameraControl.Dock = System.Windows.Forms.DockStyle.Top;
  36. this.tabCameraControl.HotTrack = true;
  37. this.tabCameraControl.ItemSize = new System.Drawing.Size(120, 50);
  38. this.tabCameraControl.Location = new System.Drawing.Point(0, 0);
  39. this.tabCameraControl.Name = "tabCameraControl";
  40. this.tabCameraControl.SelectedIndex = 0;
  41. this.tabCameraControl.Size = new System.Drawing.Size(808, 50);
  42. this.tabCameraControl.TabIndex = 0;
  43. //
  44. // ImageShowBox
  45. //
  46. this.ImageShowBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  47. | System.Windows.Forms.AnchorStyles.Left)
  48. | System.Windows.Forms.AnchorStyles.Right)));
  49. this.ImageShowBox.BackColor = System.Drawing.Color.Transparent;
  50. this.ImageShowBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  51. this.ImageShowBox.Location = new System.Drawing.Point(0, 50);
  52. this.ImageShowBox.Name = "ImageShowBox";
  53. this.ImageShowBox.Size = new System.Drawing.Size(808, 563);
  54. this.ImageShowBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  55. this.ImageShowBox.TabIndex = 1;
  56. this.ImageShowBox.TabStop = false;
  57. //
  58. // IdentifyCameraForm
  59. //
  60. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  61. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  62. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(3)))), ((int)(((byte)(28)))), ((int)(((byte)(48)))));
  63. this.ClientSize = new System.Drawing.Size(808, 613);
  64. this.Controls.Add(this.ImageShowBox);
  65. this.Controls.Add(this.tabCameraControl);
  66. this.ForeColor = System.Drawing.SystemColors.ControlText;
  67. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  68. this.Name = "IdentifyCameraForm";
  69. this.Opacity = 0.3D;
  70. this.Text = "IdentifyCameraForm";
  71. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.IdentifyCameraForm_FormClosing);
  72. ((System.ComponentModel.ISupportInitialize)(this.ImageShowBox)).EndInit();
  73. this.ResumeLayout(false);
  74. }
  75. #endregion
  76. private System.Windows.Forms.TabControl tabCameraControl;
  77. private System.Windows.Forms.PictureBox ImageShowBox;
  78. }
  79. }