frmManualOperate.Designer.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. namespace Core.StlMes.Client.LgCommon
  2. {
  3. partial class frmManualOperate
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmManualOperate));
  29. this.panel1 = new System.Windows.Forms.Panel();
  30. this.panel2 = new System.Windows.Forms.Panel();
  31. this.unit_Abnormal = new Core.StlMes.Client.LgCommon.ucManualOperateUnit();
  32. this.unit_Switch = new Core.StlMes.Client.LgCommon.ucManualOperateUnit();
  33. this.unit_Normal = new Core.StlMes.Client.LgCommon.ucManualOperateUnit();
  34. this.btnOK = new System.Windows.Forms.Button();
  35. this.btnCancel = new System.Windows.Forms.Button();
  36. this.panel1.SuspendLayout();
  37. this.panel2.SuspendLayout();
  38. this.SuspendLayout();
  39. //
  40. // panel1
  41. //
  42. this.panel1.Controls.Add(this.panel2);
  43. this.panel1.Controls.Add(this.unit_Normal);
  44. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  45. this.panel1.Location = new System.Drawing.Point(0, 0);
  46. this.panel1.Name = "panel1";
  47. this.panel1.Size = new System.Drawing.Size(300, 287);
  48. this.panel1.TabIndex = 2;
  49. //
  50. // panel2
  51. //
  52. this.panel2.Controls.Add(this.unit_Abnormal);
  53. this.panel2.Controls.Add(this.unit_Switch);
  54. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  55. this.panel2.Location = new System.Drawing.Point(0, 80);
  56. this.panel2.Name = "panel2";
  57. this.panel2.Size = new System.Drawing.Size(300, 207);
  58. this.panel2.TabIndex = 0;
  59. //
  60. // unit_Abnormal
  61. //
  62. this.unit_Abnormal.Caption = "异常执行操作";
  63. this.unit_Abnormal.Dock = System.Windows.Forms.DockStyle.Fill;
  64. this.unit_Abnormal.Location = new System.Drawing.Point(0, 0);
  65. this.unit_Abnormal.Name = "unit_Abnormal";
  66. this.unit_Abnormal.Size = new System.Drawing.Size(150, 207);
  67. this.unit_Abnormal.TabIndex = 0;
  68. //
  69. // unit_Switch
  70. //
  71. this.unit_Switch.Caption = "切换岗位信息";
  72. this.unit_Switch.Dock = System.Windows.Forms.DockStyle.Right;
  73. this.unit_Switch.Location = new System.Drawing.Point(150, 0);
  74. this.unit_Switch.Name = "unit_Switch";
  75. this.unit_Switch.Size = new System.Drawing.Size(150, 207);
  76. this.unit_Switch.TabIndex = 0;
  77. //
  78. // unit_Normal
  79. //
  80. this.unit_Normal.Caption = "正常执行操作";
  81. this.unit_Normal.Dock = System.Windows.Forms.DockStyle.Top;
  82. this.unit_Normal.Location = new System.Drawing.Point(0, 0);
  83. this.unit_Normal.Name = "unit_Normal";
  84. this.unit_Normal.Size = new System.Drawing.Size(300, 80);
  85. this.unit_Normal.TabIndex = 0;
  86. //
  87. // btnOK
  88. //
  89. this.btnOK.Image = ((System.Drawing.Image)(resources.GetObject("btnOK.Image")));
  90. this.btnOK.Location = new System.Drawing.Point(118, 296);
  91. this.btnOK.Name = "btnOK";
  92. this.btnOK.Size = new System.Drawing.Size(75, 23);
  93. this.btnOK.TabIndex = 0;
  94. this.btnOK.Text = "确认(&O)";
  95. this.btnOK.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
  96. this.btnOK.UseVisualStyleBackColor = true;
  97. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  98. //
  99. // btnCancel
  100. //
  101. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  102. this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image")));
  103. this.btnCancel.Location = new System.Drawing.Point(202, 296);
  104. this.btnCancel.Name = "btnCancel";
  105. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  106. this.btnCancel.TabIndex = 1;
  107. this.btnCancel.Text = "退出(&C)";
  108. this.btnCancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
  109. this.btnCancel.UseVisualStyleBackColor = true;
  110. //
  111. // frmManualOperate
  112. //
  113. this.AcceptButton = this.btnOK;
  114. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  115. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  116. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(228)))), ((int)(((byte)(242)))));
  117. this.CancelButton = this.btnCancel;
  118. this.ClientSize = new System.Drawing.Size(300, 326);
  119. this.Controls.Add(this.btnCancel);
  120. this.Controls.Add(this.btnOK);
  121. this.Controls.Add(this.panel1);
  122. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  123. this.MaximizeBox = false;
  124. this.MinimizeBox = false;
  125. this.Name = "frmManualOperate";
  126. this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  127. this.TopMost = true;
  128. this.Load += new System.EventHandler(this.frmManualOperate_Load);
  129. this.panel1.ResumeLayout(false);
  130. this.panel2.ResumeLayout(false);
  131. this.ResumeLayout(false);
  132. }
  133. #endregion
  134. private System.Windows.Forms.Panel panel1;
  135. private System.Windows.Forms.Button btnOK;
  136. private System.Windows.Forms.Button btnCancel;
  137. private System.Windows.Forms.Panel panel2;
  138. private ucManualOperateUnit unit_Normal;
  139. private ucManualOperateUnit unit_Switch;
  140. private ucManualOperateUnit unit_Abnormal;
  141. }
  142. }