MainForm.Designer.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. namespace xicheji
  2. {
  3. partial class MainForm
  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. components = new System.ComponentModel.Container();
  29. button4 = new Button();
  30. pictureBox1 = new PictureBox();
  31. nowTimer = new System.Windows.Forms.Timer(components);
  32. uploadTimer = new System.Windows.Forms.Timer(components);
  33. receivePLCTimer = new System.Windows.Forms.Timer(components);
  34. lblTime = new Label();
  35. btnSetting = new Button();
  36. btnConnectCamera = new Button();
  37. button2 = new Button();
  38. button3 = new Button();
  39. ((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
  40. SuspendLayout();
  41. //
  42. // button4
  43. //
  44. button4.Location = new Point(199, 55);
  45. button4.Name = "button4";
  46. button4.Size = new Size(75, 23);
  47. button4.TabIndex = 5;
  48. button4.Text = "button4";
  49. button4.UseVisualStyleBackColor = true;
  50. button4.Click += button4_Click;
  51. //
  52. // pictureBox1
  53. //
  54. pictureBox1.Location = new Point(690, 131);
  55. pictureBox1.Name = "pictureBox1";
  56. pictureBox1.Size = new Size(365, 463);
  57. pictureBox1.TabIndex = 6;
  58. pictureBox1.TabStop = false;
  59. //
  60. // nowTimer
  61. //
  62. nowTimer.Enabled = true;
  63. nowTimer.Interval = 1000;
  64. nowTimer.Tick += nowTimer_Tick;
  65. //
  66. // uploadTimer
  67. //
  68. uploadTimer.Tick += uploadTimer_Tick;
  69. //
  70. // receivePLCTimer
  71. //
  72. receivePLCTimer.Tick += receivePLCTimer_Tick;
  73. //
  74. // lblTime
  75. //
  76. lblTime.Anchor = AnchorStyles.Top | AnchorStyles.Right;
  77. lblTime.AutoSize = true;
  78. lblTime.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
  79. lblTime.Location = new Point(871, 25);
  80. lblTime.Name = "lblTime";
  81. lblTime.Size = new Size(203, 21);
  82. lblTime.TabIndex = 7;
  83. lblTime.Text = "0000年 0月 00日 00:00:00";
  84. //
  85. // btnSetting
  86. //
  87. btnSetting.Anchor = AnchorStyles.Top | AnchorStyles.Right;
  88. btnSetting.Location = new Point(815, 26);
  89. btnSetting.Name = "btnSetting";
  90. btnSetting.Size = new Size(50, 23);
  91. btnSetting.TabIndex = 8;
  92. btnSetting.Text = "配置";
  93. btnSetting.UseVisualStyleBackColor = true;
  94. btnSetting.Click += btnSetting_Click;
  95. //
  96. // btnConnectCamera
  97. //
  98. btnConnectCamera.Location = new Point(975, 102);
  99. btnConnectCamera.Name = "btnConnectCamera";
  100. btnConnectCamera.Size = new Size(80, 23);
  101. btnConnectCamera.TabIndex = 0;
  102. btnConnectCamera.Text = "重连摄像头";
  103. btnConnectCamera.UseVisualStyleBackColor = true;
  104. btnConnectCamera.Click += button1_Click;
  105. //
  106. // button2
  107. //
  108. button2.Location = new Point(23, 55);
  109. button2.Name = "button2";
  110. button2.Size = new Size(75, 23);
  111. button2.TabIndex = 3;
  112. button2.Text = "button2";
  113. button2.UseVisualStyleBackColor = true;
  114. button2.Click += button2_Click;
  115. //
  116. // button3
  117. //
  118. button3.Location = new Point(104, 55);
  119. button3.Name = "button3";
  120. button3.Size = new Size(75, 23);
  121. button3.TabIndex = 4;
  122. button3.Text = "button3";
  123. button3.UseVisualStyleBackColor = true;
  124. button3.Click += button3_Click;
  125. //
  126. // MainForm
  127. //
  128. AutoScaleDimensions = new SizeF(7F, 17F);
  129. AutoScaleMode = AutoScaleMode.Font;
  130. ClientSize = new Size(1086, 662);
  131. Controls.Add(btnSetting);
  132. Controls.Add(lblTime);
  133. Controls.Add(pictureBox1);
  134. Controls.Add(button4);
  135. Controls.Add(button3);
  136. Controls.Add(button2);
  137. Controls.Add(btnConnectCamera);
  138. Name = "MainForm";
  139. ShowIcon = false;
  140. Text = "Form1";
  141. Load += MainForm_Load;
  142. ((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
  143. ResumeLayout(false);
  144. PerformLayout();
  145. }
  146. #endregion
  147. private Button button4;
  148. private PictureBox pictureBox1;
  149. private System.Windows.Forms.Timer nowTimer;
  150. private System.Windows.Forms.Timer uploadTimer;
  151. private System.Windows.Forms.Timer receivePLCTimer;
  152. private Label lblTime;
  153. private Button btnSetting;
  154. private Button btnConnectCamera;
  155. private Button button2;
  156. private Button button3;
  157. }
  158. }