123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- namespace UAS_MES_NEW.Query
- {
- partial class BadItem
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.Data = new System.Windows.Forms.DataGridView();
- this.detno = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.mb_badname = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.times = new System.Windows.Forms.DataGridViewLinkColumn();
- this.sums = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.rate = new System.Windows.Forms.DataGridViewTextBoxColumn();
- ((System.ComponentModel.ISupportInitialize)(this.Data)).BeginInit();
- this.SuspendLayout();
- //
- // Data
- //
- this.Data.AllowUserToAddRows = false;
- this.Data.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.Data.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.detno,
- this.mb_badname,
- this.times,
- this.sums,
- this.rate});
- this.Data.Location = new System.Drawing.Point(9, 21);
- this.Data.Margin = new System.Windows.Forms.Padding(2);
- this.Data.Name = "Data";
- this.Data.RowTemplate.Height = 37;
- this.Data.Size = new System.Drawing.Size(1280, 832);
- this.Data.TabIndex = 221;
- this.Data.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.Data_CellContentClick);
- //
- // detno
- //
- this.detno.DataPropertyName = "detno";
- this.detno.HeaderText = "detno";
- this.detno.Name = "detno";
- this.detno.Visible = false;
- //
- // mb_badname
- //
- this.mb_badname.DataPropertyName = "mb_badname";
- this.mb_badname.HeaderText = "不良";
- this.mb_badname.Name = "mb_badname";
- //
- // times
- //
- this.times.DataPropertyName = "times";
- this.times.HeaderText = "出现次数";
- this.times.Name = "times";
- this.times.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.times.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // sums
- //
- this.sums.DataPropertyName = "sums";
- this.sums.HeaderText = "合计";
- this.sums.Name = "sums";
- //
- // rate
- //
- this.rate.DataPropertyName = "rate";
- this.rate.HeaderText = "占比";
- this.rate.Name = "rate";
- //
- // BadItem
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1298, 862);
- this.Controls.Add(this.Data);
- this.Margin = new System.Windows.Forms.Padding(2);
- this.Name = "BadItem";
- this.Text = "不良代码数据";
- this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
- this.Load += new System.EventHandler(this.BadItem_Load);
- this.SizeChanged += new System.EventHandler(this.BadItem_SizeChanged);
- ((System.ComponentModel.ISupportInitialize)(this.Data)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.DataGridView Data;
- private System.Windows.Forms.DataGridViewTextBoxColumn detno;
- private System.Windows.Forms.DataGridViewTextBoxColumn mb_badname;
- private System.Windows.Forms.DataGridViewLinkColumn times;
- private System.Windows.Forms.DataGridViewTextBoxColumn sums;
- private System.Windows.Forms.DataGridViewTextBoxColumn rate;
- }
- }
|