BadSn.Designer.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. namespace UAS_MES_NEW.Query
  2. {
  3. partial class BadSn
  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(BadSn));
  29. this.Data = new System.Windows.Forms.DataGridView();
  30. this.mb_makecode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  31. this.st_name = new System.Windows.Forms.DataGridViewTextBoxColumn();
  32. this.mb_sncode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  33. this.mb_badname = new System.Windows.Forms.DataGridViewTextBoxColumn();
  34. this.em_name = new System.Windows.Forms.DataGridViewTextBoxColumn();
  35. this.mb_indate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
  37. this.normalButton1 = new UAS_MES_NEW.CustomControl.ButtonUtil.NormalButton();
  38. ((System.ComponentModel.ISupportInitialize)(this.Data)).BeginInit();
  39. this.SuspendLayout();
  40. //
  41. // Data
  42. //
  43. this.Data.AllowUserToAddRows = false;
  44. this.Data.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  45. this.Data.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  46. this.mb_makecode,
  47. this.st_name,
  48. this.mb_sncode,
  49. this.mb_badname,
  50. this.em_name,
  51. this.mb_indate});
  52. this.Data.Location = new System.Drawing.Point(9, 50);
  53. this.Data.Margin = new System.Windows.Forms.Padding(2);
  54. this.Data.Name = "Data";
  55. this.Data.RowTemplate.Height = 37;
  56. this.Data.Size = new System.Drawing.Size(1280, 803);
  57. this.Data.TabIndex = 221;
  58. //
  59. // mb_makecode
  60. //
  61. this.mb_makecode.DataPropertyName = "mb_makecode";
  62. this.mb_makecode.HeaderText = "工单";
  63. this.mb_makecode.Name = "mb_makecode";
  64. //
  65. // st_name
  66. //
  67. this.st_name.DataPropertyName = "st_name";
  68. this.st_name.HeaderText = "工序";
  69. this.st_name.Name = "st_name";
  70. //
  71. // mb_sncode
  72. //
  73. this.mb_sncode.DataPropertyName = "mb_sncode";
  74. this.mb_sncode.HeaderText = "SN";
  75. this.mb_sncode.Name = "mb_sncode";
  76. //
  77. // mb_badname
  78. //
  79. this.mb_badname.DataPropertyName = "mb_badname";
  80. this.mb_badname.HeaderText = "不良";
  81. this.mb_badname.Name = "mb_badname";
  82. //
  83. // em_name
  84. //
  85. this.em_name.DataPropertyName = "em_name";
  86. this.em_name.HeaderText = "录入人";
  87. this.em_name.Name = "em_name";
  88. //
  89. // mb_indate
  90. //
  91. this.mb_indate.DataPropertyName = "mb_indate";
  92. this.mb_indate.HeaderText = "录入时间";
  93. this.mb_indate.Name = "mb_indate";
  94. //
  95. // normalButton1
  96. //
  97. this.normalButton1.AllPower = null;
  98. this.normalButton1.BackColor = System.Drawing.Color.Transparent;
  99. this.normalButton1.DownImage = ((System.Drawing.Image)(resources.GetObject("normalButton1.DownImage")));
  100. this.normalButton1.Image = null;
  101. this.normalButton1.IsShowBorder = true;
  102. this.normalButton1.Location = new System.Drawing.Point(13, 8);
  103. this.normalButton1.Margin = new System.Windows.Forms.Padding(4);
  104. this.normalButton1.MoveImage = ((System.Drawing.Image)(resources.GetObject("normalButton1.MoveImage")));
  105. this.normalButton1.Name = "normalButton1";
  106. this.normalButton1.NormalImage = ((System.Drawing.Image)(resources.GetObject("normalButton1.NormalImage")));
  107. this.normalButton1.Power = null;
  108. this.normalButton1.Size = new System.Drawing.Size(92, 36);
  109. this.normalButton1.TabIndex = 226;
  110. this.normalButton1.Text = "导出";
  111. this.normalButton1.UseVisualStyleBackColor = false;
  112. this.normalButton1.Click += new System.EventHandler(this.normalButton1_Click);
  113. //
  114. // BadSn
  115. //
  116. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  117. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  118. this.ClientSize = new System.Drawing.Size(1298, 862);
  119. this.Controls.Add(this.normalButton1);
  120. this.Controls.Add(this.Data);
  121. this.Margin = new System.Windows.Forms.Padding(2);
  122. this.Name = "BadSn";
  123. this.Text = "不良代码数据";
  124. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  125. this.Load += new System.EventHandler(this.BadItem_Load);
  126. this.SizeChanged += new System.EventHandler(this.BadItem_SizeChanged);
  127. ((System.ComponentModel.ISupportInitialize)(this.Data)).EndInit();
  128. this.ResumeLayout(false);
  129. }
  130. #endregion
  131. private System.Windows.Forms.DataGridView Data;
  132. private System.Windows.Forms.DataGridViewTextBoxColumn mb_makecode;
  133. private System.Windows.Forms.DataGridViewTextBoxColumn st_name;
  134. private System.Windows.Forms.DataGridViewTextBoxColumn mb_sncode;
  135. private System.Windows.Forms.DataGridViewTextBoxColumn mb_badname;
  136. private System.Windows.Forms.DataGridViewTextBoxColumn em_name;
  137. private System.Windows.Forms.DataGridViewTextBoxColumn mb_indate;
  138. private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
  139. private CustomControl.ButtonUtil.NormalButton normalButton1;
  140. }
  141. }