FormAE2Stock.Designer.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. namespace SIMDP.Project
  2. {
  3. partial class FormAE2Stock
  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.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAE2Stock));
  30. this.panel1 = new System.Windows.Forms.Panel();
  31. this.chk_Refresh = new System.Windows.Forms.CheckBox();
  32. this.txt_CurrentPage = new DevExpress.XtraEditors.TextEdit();
  33. this.btn_Last = new DevExpress.XtraEditors.SimpleButton();
  34. this.btn_Next = new DevExpress.XtraEditors.SimpleButton();
  35. this.btn_Previous = new DevExpress.XtraEditors.SimpleButton();
  36. this.btn_First = new DevExpress.XtraEditors.SimpleButton();
  37. this.label_PageInfo = new DevExpress.XtraEditors.LabelControl();
  38. this.btn_Delete = new DevExpress.XtraEditors.SimpleButton();
  39. this.btn_Edit = new DevExpress.XtraEditors.SimpleButton();
  40. this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
  41. this.btn_Query = new DevExpress.XtraEditors.SimpleButton();
  42. this.gridControl = new DevExpress.XtraGrid.GridControl();
  43. this.gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
  44. this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
  45. this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
  46. this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
  47. this.timerRefresh = new System.Windows.Forms.Timer(this.components);
  48. this.panel1.SuspendLayout();
  49. ((System.ComponentModel.ISupportInitialize)(this.txt_CurrentPage.Properties)).BeginInit();
  50. ((System.ComponentModel.ISupportInitialize)(this.gridControl)).BeginInit();
  51. ((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
  52. this.SuspendLayout();
  53. //
  54. // panel1
  55. //
  56. this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  57. | System.Windows.Forms.AnchorStyles.Left)
  58. | System.Windows.Forms.AnchorStyles.Right)));
  59. this.panel1.Controls.Add(this.chk_Refresh);
  60. this.panel1.Controls.Add(this.txt_CurrentPage);
  61. this.panel1.Controls.Add(this.btn_Last);
  62. this.panel1.Controls.Add(this.btn_Next);
  63. this.panel1.Controls.Add(this.btn_Previous);
  64. this.panel1.Controls.Add(this.btn_First);
  65. this.panel1.Controls.Add(this.label_PageInfo);
  66. this.panel1.Controls.Add(this.btn_Delete);
  67. this.panel1.Controls.Add(this.btn_Edit);
  68. this.panel1.Controls.Add(this.btn_Add);
  69. this.panel1.Controls.Add(this.btn_Query);
  70. this.panel1.Controls.Add(this.gridControl);
  71. this.panel1.Location = new System.Drawing.Point(0, 0);
  72. this.panel1.Name = "panel1";
  73. this.panel1.Size = new System.Drawing.Size(1017, 439);
  74. this.panel1.TabIndex = 0;
  75. //
  76. // chk_Refresh
  77. //
  78. this.chk_Refresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  79. this.chk_Refresh.AutoSize = true;
  80. this.chk_Refresh.Checked = true;
  81. this.chk_Refresh.CheckState = System.Windows.Forms.CheckState.Checked;
  82. this.chk_Refresh.Location = new System.Drawing.Point(928, 11);
  83. this.chk_Refresh.Name = "chk_Refresh";
  84. this.chk_Refresh.Size = new System.Drawing.Size(74, 18);
  85. this.chk_Refresh.TabIndex = 21;
  86. this.chk_Refresh.Text = "自动刷新";
  87. this.chk_Refresh.UseVisualStyleBackColor = true;
  88. //
  89. // txt_CurrentPage
  90. //
  91. this.txt_CurrentPage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  92. this.txt_CurrentPage.EditValue = "1";
  93. this.txt_CurrentPage.Location = new System.Drawing.Point(911, 409);
  94. this.txt_CurrentPage.Name = "txt_CurrentPage";
  95. this.txt_CurrentPage.Size = new System.Drawing.Size(25, 20);
  96. this.txt_CurrentPage.TabIndex = 13;
  97. this.txt_CurrentPage.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_CurrentPage_KeyDown);
  98. //
  99. // btn_Last
  100. //
  101. this.btn_Last.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  102. this.btn_Last.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(230)))), ((int)(((byte)(244)))));
  103. this.btn_Last.Appearance.Options.UseBackColor = true;
  104. this.btn_Last.Location = new System.Drawing.Point(975, 409);
  105. this.btn_Last.Name = "btn_Last";
  106. this.btn_Last.Size = new System.Drawing.Size(30, 20);
  107. this.btn_Last.TabIndex = 9;
  108. this.btn_Last.Text = ">|";
  109. this.btn_Last.Click += new System.EventHandler(this.btn_Last_Click);
  110. //
  111. // btn_Next
  112. //
  113. this.btn_Next.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  114. this.btn_Next.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(230)))), ((int)(((byte)(244)))));
  115. this.btn_Next.Appearance.Options.UseBackColor = true;
  116. this.btn_Next.Location = new System.Drawing.Point(939, 409);
  117. this.btn_Next.Name = "btn_Next";
  118. this.btn_Next.Size = new System.Drawing.Size(30, 20);
  119. this.btn_Next.TabIndex = 10;
  120. this.btn_Next.Text = ">";
  121. this.btn_Next.Click += new System.EventHandler(this.btn_Next_Click);
  122. //
  123. // btn_Previous
  124. //
  125. this.btn_Previous.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  126. this.btn_Previous.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(230)))), ((int)(((byte)(244)))));
  127. this.btn_Previous.Appearance.Options.UseBackColor = true;
  128. this.btn_Previous.Location = new System.Drawing.Point(879, 409);
  129. this.btn_Previous.Name = "btn_Previous";
  130. this.btn_Previous.Size = new System.Drawing.Size(30, 20);
  131. this.btn_Previous.TabIndex = 11;
  132. this.btn_Previous.Text = "<";
  133. this.btn_Previous.Click += new System.EventHandler(this.btn_Previous_Click);
  134. //
  135. // btn_First
  136. //
  137. this.btn_First.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  138. this.btn_First.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(230)))), ((int)(((byte)(244)))));
  139. this.btn_First.Appearance.Options.UseBackColor = true;
  140. this.btn_First.Location = new System.Drawing.Point(843, 409);
  141. this.btn_First.Name = "btn_First";
  142. this.btn_First.Size = new System.Drawing.Size(30, 20);
  143. this.btn_First.TabIndex = 12;
  144. this.btn_First.Text = "|<";
  145. this.btn_First.Click += new System.EventHandler(this.btn_First_Click);
  146. //
  147. // label_PageInfo
  148. //
  149. this.label_PageInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  150. this.label_PageInfo.Location = new System.Drawing.Point(6, 412);
  151. this.label_PageInfo.Name = "label_PageInfo";
  152. this.label_PageInfo.Size = new System.Drawing.Size(213, 14);
  153. this.label_PageInfo.TabIndex = 8;
  154. this.label_PageInfo.Text = "共 {0} 条记录,每页 {1} 条,共 {2} 页";
  155. //
  156. // btn_Delete
  157. //
  158. this.btn_Delete.Image = ((System.Drawing.Image)(resources.GetObject("btn_Delete.Image")));
  159. this.btn_Delete.Location = new System.Drawing.Point(217, 8);
  160. this.btn_Delete.Name = "btn_Delete";
  161. this.btn_Delete.Size = new System.Drawing.Size(75, 23);
  162. this.btn_Delete.TabIndex = 7;
  163. this.btn_Delete.Text = "删除";
  164. this.btn_Delete.Click += new System.EventHandler(this.btn_Delete_Click);
  165. //
  166. // btn_Edit
  167. //
  168. this.btn_Edit.Image = ((System.Drawing.Image)(resources.GetObject("btn_Edit.Image")));
  169. this.btn_Edit.Location = new System.Drawing.Point(114, 8);
  170. this.btn_Edit.Name = "btn_Edit";
  171. this.btn_Edit.Size = new System.Drawing.Size(75, 23);
  172. this.btn_Edit.TabIndex = 6;
  173. this.btn_Edit.Text = "修改";
  174. this.btn_Edit.Click += new System.EventHandler(this.btn_Edit_Click);
  175. //
  176. // btn_Add
  177. //
  178. this.btn_Add.Image = ((System.Drawing.Image)(resources.GetObject("btn_Add.Image")));
  179. this.btn_Add.Location = new System.Drawing.Point(18, 8);
  180. this.btn_Add.Name = "btn_Add";
  181. this.btn_Add.Size = new System.Drawing.Size(75, 23);
  182. this.btn_Add.TabIndex = 5;
  183. this.btn_Add.Text = "添加";
  184. this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
  185. //
  186. // btn_Query
  187. //
  188. this.btn_Query.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  189. this.btn_Query.Image = ((System.Drawing.Image)(resources.GetObject("btn_Query.Image")));
  190. this.btn_Query.Location = new System.Drawing.Point(821, 8);
  191. this.btn_Query.Name = "btn_Query";
  192. this.btn_Query.Size = new System.Drawing.Size(75, 23);
  193. this.btn_Query.TabIndex = 4;
  194. this.btn_Query.Text = "查询";
  195. this.btn_Query.Click += new System.EventHandler(this.btn_Search_Click);
  196. //
  197. // gridControl
  198. //
  199. this.gridControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  200. | System.Windows.Forms.AnchorStyles.Left)
  201. | System.Windows.Forms.AnchorStyles.Right)));
  202. this.gridControl.Location = new System.Drawing.Point(0, 37);
  203. this.gridControl.MainView = this.gridView;
  204. this.gridControl.Name = "gridControl";
  205. this.gridControl.Size = new System.Drawing.Size(1014, 366);
  206. this.gridControl.TabIndex = 0;
  207. this.gridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  208. this.gridView});
  209. //
  210. // gridView
  211. //
  212. this.gridView.Appearance.HeaderPanel.Options.UseTextOptions = true;
  213. this.gridView.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  214. this.gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  215. this.gridColumn2,
  216. this.gridColumn3,
  217. this.gridColumn4});
  218. this.gridView.GridControl = this.gridControl;
  219. this.gridView.IndicatorWidth = 30;
  220. this.gridView.Name = "gridView";
  221. this.gridView.OptionsBehavior.Editable = false;
  222. this.gridView.OptionsBehavior.ReadOnly = true;
  223. this.gridView.OptionsView.EnableAppearanceEvenRow = true;
  224. this.gridView.OptionsView.EnableAppearanceOddRow = true;
  225. this.gridView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.ShowAlways;
  226. this.gridView.OptionsView.ShowGroupPanel = false;
  227. this.gridView.OptionsView.ShowPreviewRowLines = DevExpress.Utils.DefaultBoolean.True;
  228. this.gridView.OptionsView.ShowVerticalLines = DevExpress.Utils.DefaultBoolean.True;
  229. this.gridView.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView_CustomDrawRowIndicator);
  230. this.gridView.CustomColumnDisplayText += new DevExpress.XtraGrid.Views.Base.CustomColumnDisplayTextEventHandler(this.gridView_CustomColumnDisplayText);
  231. //
  232. // gridColumn2
  233. //
  234. this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
  235. this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  236. this.gridColumn2.Caption = "序号";
  237. this.gridColumn2.FieldName = "StockId";
  238. this.gridColumn2.Name = "gridColumn2";
  239. this.gridColumn2.Visible = true;
  240. this.gridColumn2.VisibleIndex = 0;
  241. //
  242. // gridColumn3
  243. //
  244. this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
  245. this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  246. this.gridColumn3.Caption = "库位码";
  247. this.gridColumn3.FieldName = "PlcCode";
  248. this.gridColumn3.Name = "gridColumn3";
  249. this.gridColumn3.Visible = true;
  250. this.gridColumn3.VisibleIndex = 1;
  251. //
  252. // gridColumn4
  253. //
  254. this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
  255. this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  256. this.gridColumn4.Caption = "状态";
  257. this.gridColumn4.FieldName = "State";
  258. this.gridColumn4.Name = "gridColumn4";
  259. this.gridColumn4.Visible = true;
  260. this.gridColumn4.VisibleIndex = 2;
  261. //
  262. // timerRefresh
  263. //
  264. this.timerRefresh.Enabled = true;
  265. this.timerRefresh.Interval = 2000;
  266. this.timerRefresh.Tick += new System.EventHandler(this.timerRefresh_Tick);
  267. //
  268. // FormAE2Stock
  269. //
  270. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
  271. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  272. this.ClientSize = new System.Drawing.Size(1014, 436);
  273. this.Controls.Add(this.panel1);
  274. this.Name = "FormAE2Stock";
  275. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  276. this.Text = "AE2托盘库";
  277. this.panel1.ResumeLayout(false);
  278. this.panel1.PerformLayout();
  279. ((System.ComponentModel.ISupportInitialize)(this.txt_CurrentPage.Properties)).EndInit();
  280. ((System.ComponentModel.ISupportInitialize)(this.gridControl)).EndInit();
  281. ((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
  282. this.ResumeLayout(false);
  283. }
  284. #endregion
  285. private System.Windows.Forms.Panel panel1;
  286. private DevExpress.XtraEditors.SimpleButton btn_Delete;
  287. private DevExpress.XtraEditors.SimpleButton btn_Edit;
  288. private DevExpress.XtraEditors.SimpleButton btn_Add;
  289. private DevExpress.XtraEditors.SimpleButton btn_Query;
  290. private DevExpress.XtraGrid.GridControl gridControl;
  291. private DevExpress.XtraGrid.Views.Grid.GridView gridView;
  292. private DevExpress.XtraEditors.LabelControl label_PageInfo;
  293. private DevExpress.XtraEditors.TextEdit txt_CurrentPage;
  294. private DevExpress.XtraEditors.SimpleButton btn_Last;
  295. private DevExpress.XtraEditors.SimpleButton btn_Next;
  296. private DevExpress.XtraEditors.SimpleButton btn_Previous;
  297. private DevExpress.XtraEditors.SimpleButton btn_First;
  298. private DevExpress.XtraGrid.Columns.GridColumn gridColumn2;
  299. private DevExpress.XtraGrid.Columns.GridColumn gridColumn3;
  300. private DevExpress.XtraGrid.Columns.GridColumn gridColumn4;
  301. private System.Windows.Forms.CheckBox chk_Refresh;
  302. private System.Windows.Forms.Timer timerRefresh;
  303. }
  304. }