BadItem.Designer.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. namespace UAS_MES_NEW.Query
  2. {
  3. partial class BadItem
  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.Data = new System.Windows.Forms.DataGridView();
  29. this.detno = new System.Windows.Forms.DataGridViewTextBoxColumn();
  30. this.mb_badname = new System.Windows.Forms.DataGridViewTextBoxColumn();
  31. this.times = new System.Windows.Forms.DataGridViewLinkColumn();
  32. this.sums = new System.Windows.Forms.DataGridViewTextBoxColumn();
  33. this.rate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  34. ((System.ComponentModel.ISupportInitialize)(this.Data)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // Data
  38. //
  39. this.Data.AllowUserToAddRows = false;
  40. this.Data.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  41. this.Data.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  42. this.detno,
  43. this.mb_badname,
  44. this.times,
  45. this.sums,
  46. this.rate});
  47. this.Data.Location = new System.Drawing.Point(9, 21);
  48. this.Data.Margin = new System.Windows.Forms.Padding(2);
  49. this.Data.Name = "Data";
  50. this.Data.RowTemplate.Height = 37;
  51. this.Data.Size = new System.Drawing.Size(1280, 832);
  52. this.Data.TabIndex = 221;
  53. this.Data.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.Data_CellContentClick);
  54. //
  55. // detno
  56. //
  57. this.detno.DataPropertyName = "detno";
  58. this.detno.HeaderText = "detno";
  59. this.detno.Name = "detno";
  60. this.detno.Visible = false;
  61. //
  62. // mb_badname
  63. //
  64. this.mb_badname.DataPropertyName = "mb_badname";
  65. this.mb_badname.HeaderText = "不良";
  66. this.mb_badname.Name = "mb_badname";
  67. //
  68. // times
  69. //
  70. this.times.DataPropertyName = "times";
  71. this.times.HeaderText = "出现次数";
  72. this.times.Name = "times";
  73. this.times.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  74. this.times.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  75. //
  76. // sums
  77. //
  78. this.sums.DataPropertyName = "sums";
  79. this.sums.HeaderText = "合计";
  80. this.sums.Name = "sums";
  81. //
  82. // rate
  83. //
  84. this.rate.DataPropertyName = "rate";
  85. this.rate.HeaderText = "占比";
  86. this.rate.Name = "rate";
  87. //
  88. // BadItem
  89. //
  90. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  91. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  92. this.ClientSize = new System.Drawing.Size(1298, 862);
  93. this.Controls.Add(this.Data);
  94. this.Margin = new System.Windows.Forms.Padding(2);
  95. this.Name = "BadItem";
  96. this.Text = "不良代码数据";
  97. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  98. this.Load += new System.EventHandler(this.BadItem_Load);
  99. this.SizeChanged += new System.EventHandler(this.BadItem_SizeChanged);
  100. ((System.ComponentModel.ISupportInitialize)(this.Data)).EndInit();
  101. this.ResumeLayout(false);
  102. }
  103. #endregion
  104. private System.Windows.Forms.DataGridView Data;
  105. private System.Windows.Forms.DataGridViewTextBoxColumn detno;
  106. private System.Windows.Forms.DataGridViewTextBoxColumn mb_badname;
  107. private System.Windows.Forms.DataGridViewLinkColumn times;
  108. private System.Windows.Forms.DataGridViewTextBoxColumn sums;
  109. private System.Windows.Forms.DataGridViewTextBoxColumn rate;
  110. }
  111. }