CallBoxUI.Designer.cs 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. 
  2. namespace ProjectManagementSystem.UI
  3. {
  4. partial class CallBoxUI
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region 组件设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  32. this.panel1 = new System.Windows.Forms.Panel();
  33. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  34. this.colName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  35. this.colRoute = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. this.colStatus = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.colLightStatus = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.colDataValid = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  39. this.colCalled = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  40. this.colCancelCall = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  41. this.panel1.SuspendLayout();
  42. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  43. this.SuspendLayout();
  44. //
  45. // panel1
  46. //
  47. this.panel1.Controls.Add(this.dataGridView1);
  48. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  49. this.panel1.Location = new System.Drawing.Point(0, 0);
  50. this.panel1.Margin = new System.Windows.Forms.Padding(6);
  51. this.panel1.Name = "panel1";
  52. this.panel1.Size = new System.Drawing.Size(1138, 722);
  53. this.panel1.TabIndex = 2;
  54. //
  55. // dataGridView1
  56. //
  57. this.dataGridView1.AllowUserToAddRows = false;
  58. this.dataGridView1.AllowUserToDeleteRows = false;
  59. this.dataGridView1.AllowUserToResizeRows = false;
  60. this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
  61. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  62. this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  63. this.colName,
  64. this.colRoute,
  65. this.colStatus,
  66. this.colLightStatus,
  67. this.colDataValid,
  68. this.colCalled,
  69. this.colCancelCall});
  70. this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
  71. this.dataGridView1.Location = new System.Drawing.Point(0, 0);
  72. this.dataGridView1.Margin = new System.Windows.Forms.Padding(6);
  73. this.dataGridView1.MultiSelect = false;
  74. this.dataGridView1.Name = "dataGridView1";
  75. this.dataGridView1.ReadOnly = true;
  76. this.dataGridView1.RowHeadersWidth = 5;
  77. this.dataGridView1.RowTemplate.Height = 23;
  78. this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  79. this.dataGridView1.Size = new System.Drawing.Size(1138, 722);
  80. this.dataGridView1.TabIndex = 0;
  81. //
  82. // colName
  83. //
  84. this.colName.DataPropertyName = "Name";
  85. this.colName.HeaderText = "地址";
  86. this.colName.MinimumWidth = 10;
  87. this.colName.Name = "colName";
  88. this.colName.ReadOnly = true;
  89. this.colName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  90. this.colName.Width = 50;
  91. //
  92. // colRoute
  93. //
  94. this.colRoute.DataPropertyName = "Route";
  95. this.colRoute.HeaderText = "路线或编号";
  96. this.colRoute.MinimumWidth = 10;
  97. this.colRoute.Name = "colRoute";
  98. this.colRoute.ReadOnly = true;
  99. this.colRoute.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  100. this.colRoute.Width = 104;
  101. //
  102. // colStatus
  103. //
  104. this.colStatus.DataPropertyName = "Status";
  105. dataGridViewCellStyle1.Format = "X2";
  106. this.colStatus.DefaultCellStyle = dataGridViewCellStyle1;
  107. this.colStatus.HeaderText = "状态(HEX)";
  108. this.colStatus.MinimumWidth = 10;
  109. this.colStatus.Name = "colStatus";
  110. this.colStatus.ReadOnly = true;
  111. this.colStatus.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  112. this.colStatus.Width = 95;
  113. //
  114. // colLightStatus
  115. //
  116. this.colLightStatus.DataPropertyName = "LightStatus";
  117. dataGridViewCellStyle2.Format = "X2";
  118. this.colLightStatus.DefaultCellStyle = dataGridViewCellStyle2;
  119. this.colLightStatus.HeaderText = "灯状态(HEX)";
  120. this.colLightStatus.MinimumWidth = 10;
  121. this.colLightStatus.Name = "colLightStatus";
  122. this.colLightStatus.ReadOnly = true;
  123. this.colLightStatus.Width = 152;
  124. //
  125. // colDataValid
  126. //
  127. this.colDataValid.DataPropertyName = "DataValid";
  128. this.colDataValid.HeaderText = "数据有效";
  129. this.colDataValid.MinimumWidth = 10;
  130. this.colDataValid.Name = "colDataValid";
  131. this.colDataValid.ReadOnly = true;
  132. this.colDataValid.Width = 86;
  133. //
  134. // colCalled
  135. //
  136. this.colCalled.DataPropertyName = "Called";
  137. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  138. dataGridViewCellStyle3.Format = "G";
  139. dataGridViewCellStyle3.NullValue = false;
  140. this.colCalled.DefaultCellStyle = dataGridViewCellStyle3;
  141. this.colCalled.HeaderText = "叫料";
  142. this.colCalled.MinimumWidth = 10;
  143. this.colCalled.Name = "colCalled";
  144. this.colCalled.ReadOnly = true;
  145. this.colCalled.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  146. this.colCalled.Width = 50;
  147. //
  148. // colCancelCall
  149. //
  150. this.colCancelCall.DataPropertyName = "CancelCall";
  151. this.colCancelCall.HeaderText = "取消叫料";
  152. this.colCancelCall.MinimumWidth = 10;
  153. this.colCancelCall.Name = "colCancelCall";
  154. this.colCancelCall.ReadOnly = true;
  155. this.colCancelCall.Width = 86;
  156. //
  157. // CallBoxUI
  158. //
  159. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  160. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  161. this.Controls.Add(this.panel1);
  162. this.Name = "CallBoxUI";
  163. this.Size = new System.Drawing.Size(1138, 722);
  164. this.panel1.ResumeLayout(false);
  165. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  166. this.ResumeLayout(false);
  167. }
  168. #endregion
  169. private System.Windows.Forms.Panel panel1;
  170. private System.Windows.Forms.DataGridView dataGridView1;
  171. private System.Windows.Forms.DataGridViewTextBoxColumn colName;
  172. private System.Windows.Forms.DataGridViewTextBoxColumn colRoute;
  173. private System.Windows.Forms.DataGridViewTextBoxColumn colStatus;
  174. private System.Windows.Forms.DataGridViewTextBoxColumn colLightStatus;
  175. private System.Windows.Forms.DataGridViewCheckBoxColumn colDataValid;
  176. private System.Windows.Forms.DataGridViewCheckBoxColumn colCalled;
  177. private System.Windows.Forms.DataGridViewCheckBoxColumn colCancelCall;
  178. }
  179. }