M182轴承端盖外观缺陷AOI
kingno
2025-05-26 5a405c7dce20d8c79a733c9c786cc42eb59fe81c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
namespace Bro.M141.Process.UI
{
    partial class FrmProductList
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;
 
        #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()
        {
            components = new System.ComponentModel.Container();
            tableLayoutPanel1_ProductListDisplay = new TableLayoutPanel();
            button1_ClearProductDisplayList = new Button();
            checkBox1_IsAutoRefresh = new CheckBox();
            dataGridView1_ProductDisplayList = new DataGridView();
            timerRefresh = new System.Windows.Forms.Timer(components);
            tableLayoutPanel1_ProductListDisplay.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)dataGridView1_ProductDisplayList).BeginInit();
            SuspendLayout();
            // 
            // tableLayoutPanel1_ProductListDisplay
            // 
            tableLayoutPanel1_ProductListDisplay.ColumnCount = 2;
            tableLayoutPanel1_ProductListDisplay.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
            tableLayoutPanel1_ProductListDisplay.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
            tableLayoutPanel1_ProductListDisplay.Controls.Add(button1_ClearProductDisplayList, 0, 0);
            tableLayoutPanel1_ProductListDisplay.Controls.Add(checkBox1_IsAutoRefresh, 1, 0);
            tableLayoutPanel1_ProductListDisplay.Controls.Add(dataGridView1_ProductDisplayList, 0, 1);
            tableLayoutPanel1_ProductListDisplay.Dock = DockStyle.Fill;
            tableLayoutPanel1_ProductListDisplay.Location = new Point(0, 0);
            tableLayoutPanel1_ProductListDisplay.Name = "tableLayoutPanel1_ProductListDisplay";
            tableLayoutPanel1_ProductListDisplay.RowCount = 2;
            tableLayoutPanel1_ProductListDisplay.RowStyles.Add(new RowStyle(SizeType.Absolute, 30F));
            tableLayoutPanel1_ProductListDisplay.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
            tableLayoutPanel1_ProductListDisplay.Size = new Size(800, 450);
            tableLayoutPanel1_ProductListDisplay.TabIndex = 0;
            // 
            // button1_ClearProductDisplayList
            // 
            button1_ClearProductDisplayList.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left;
            button1_ClearProductDisplayList.BackColor = Color.FromArgb(255, 128, 0);
            button1_ClearProductDisplayList.Cursor = Cursors.Hand;
            button1_ClearProductDisplayList.FlatAppearance.BorderSize = 0;
            button1_ClearProductDisplayList.FlatStyle = FlatStyle.Flat;
            button1_ClearProductDisplayList.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point);
            button1_ClearProductDisplayList.ForeColor = SystemColors.Control;
            button1_ClearProductDisplayList.Location = new Point(3, 3);
            button1_ClearProductDisplayList.Name = "button1_ClearProductDisplayList";
            button1_ClearProductDisplayList.Size = new Size(84, 24);
            button1_ClearProductDisplayList.TabIndex = 0;
            button1_ClearProductDisplayList.Text = "清空";
            button1_ClearProductDisplayList.UseVisualStyleBackColor = false;
            button1_ClearProductDisplayList.Click += button1_ClearProductDisplayList_Click;
            // 
            // checkBox1_IsAutoRefresh
            // 
            checkBox1_IsAutoRefresh.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Right;
            checkBox1_IsAutoRefresh.AutoSize = true;
            checkBox1_IsAutoRefresh.FlatStyle = FlatStyle.Flat;
            checkBox1_IsAutoRefresh.Font = new Font("Tahoma", 9.75F, FontStyle.Regular, GraphicsUnit.Point);
            checkBox1_IsAutoRefresh.Location = new Point(712, 5);
            checkBox1_IsAutoRefresh.Margin = new Padding(5);
            checkBox1_IsAutoRefresh.Name = "checkBox1_IsAutoRefresh";
            checkBox1_IsAutoRefresh.Size = new Size(83, 20);
            checkBox1_IsAutoRefresh.TabIndex = 1;
            checkBox1_IsAutoRefresh.Text = "自动刷新";
            checkBox1_IsAutoRefresh.UseVisualStyleBackColor = true;
            // 
            // dataGridView1_ProductDisplayList
            // 
            dataGridView1_ProductDisplayList.AllowUserToAddRows = false;
            dataGridView1_ProductDisplayList.AllowUserToDeleteRows = false;
            dataGridView1_ProductDisplayList.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
            dataGridView1_ProductDisplayList.BackgroundColor = Color.FromArgb(192, 192, 255);
            dataGridView1_ProductDisplayList.BorderStyle = BorderStyle.None;
            dataGridView1_ProductDisplayList.CellBorderStyle = DataGridViewCellBorderStyle.Raised;
            dataGridView1_ProductDisplayList.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            tableLayoutPanel1_ProductListDisplay.SetColumnSpan(dataGridView1_ProductDisplayList, 2);
            dataGridView1_ProductDisplayList.Dock = DockStyle.Fill;
            dataGridView1_ProductDisplayList.Location = new Point(3, 33);
            dataGridView1_ProductDisplayList.Name = "dataGridView1_ProductDisplayList";
            dataGridView1_ProductDisplayList.ReadOnly = true;
            dataGridView1_ProductDisplayList.RowTemplate.Height = 25;
            dataGridView1_ProductDisplayList.Size = new Size(794, 414);
            dataGridView1_ProductDisplayList.TabIndex = 2;
            // 
            // timerRefresh
            // 
            timerRefresh.Interval = 1000;
            // 
            // FrmProductList
            // 
            AutoScaleDimensions = new SizeF(6F, 13F);
            AutoScaleMode = AutoScaleMode.Font;
            Controls.Add(tableLayoutPanel1_ProductListDisplay);
            Name = "FrmProductList";
            Size = new Size(800, 450);
            tableLayoutPanel1_ProductListDisplay.ResumeLayout(false);
            tableLayoutPanel1_ProductListDisplay.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)dataGridView1_ProductDisplayList).EndInit();
            ResumeLayout(false);
        }
 
        #endregion
 
        private TableLayoutPanel tableLayoutPanel1_ProductListDisplay;
        private Button button1_ClearProductDisplayList;
        private CheckBox checkBox1_IsAutoRefresh;
        private DataGridView dataGridView1_ProductDisplayList;
        private System.Windows.Forms.Timer timerRefresh;
    }
}