forked from SMAH1/smah1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataGridViewForm.Designer.cs
More file actions
157 lines (151 loc) · 7.02 KB
/
DataGridViewForm.Designer.cs
File metadata and controls
157 lines (151 loc) · 7.02 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
namespace HowToWork
{
partial class DataGridViewForm
{
/// <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.dgv = new System.Windows.Forms.DataGridView();
this.Column1 = new SMAH1.Forms.DataGridViewComponent.DataGridViewRowNumberColumn();
this.Column2 = new SMAH1.Forms.DataGridViewComponent.DataGridViewNumTextBoxColumn();
this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ColumnStatus = new SMAH1.Forms.DataGridViewComponent.DataGridViewProgressColumn();
this.label1 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.dgv)).BeginInit();
this.SuspendLayout();
//
// dgv
//
this.dgv.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgv.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Column1,
this.Column2,
this.Column3,
this.Column4,
this.ColumnStatus});
this.dgv.Location = new System.Drawing.Point(12, 12);
this.dgv.MultiSelect = false;
this.dgv.Name = "dgv";
this.dgv.RowHeadersVisible = false;
this.dgv.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgv.Size = new System.Drawing.Size(480, 260);
this.dgv.TabIndex = 0;
//
// Column1
//
this.Column1.HeaderText = "Row";
this.Column1.Name = "Column1";
this.Column1.ReadOnly = true;
this.Column1.Width = 50;
//
// Column2
//
this.Column2.DataPropertyName = "Number";
this.Column2.DecimalPlaces = 0;
this.Column2.HeaderText = "Number";
this.Column2.Maximum = new decimal(new int[] {
100,
0,
0,
0});
this.Column2.Minimum = new decimal(new int[] {
0,
0,
0,
0});
this.Column2.Name = "Column2";
this.Column2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.Column2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
this.Column2.Width = 70;
//
// Column3
//
this.Column3.DataPropertyName = "Name";
this.Column3.HeaderText = "Name";
this.Column3.Name = "Column3";
this.Column3.Width = 80;
//
// Column4
//
this.Column4.DataPropertyName = "Family";
this.Column4.HeaderText = "Family";
this.Column4.Name = "Column4";
this.Column4.Width = 120;
//
// ColumnStatus
//
this.ColumnStatus.DataPropertyName = "Status";
this.ColumnStatus.HeaderText = "Status";
this.ColumnStatus.Name = "ColumnStatus";
this.ColumnStatus.ProgressBarColorDefault = System.Drawing.SystemColors.ControlLight;
this.ColumnStatus.ProgressBarColorError = System.Drawing.Color.Red;
this.ColumnStatus.ProgressBarColorFinish = System.Drawing.Color.Green;
this.ColumnStatus.ProgressBarColorProcess = System.Drawing.SystemColors.ControlLight;
this.ColumnStatus.ProgressBarColorQueue = System.Drawing.SystemColors.InactiveCaption;
this.ColumnStatus.ProgressBarColorSelection = System.Drawing.SystemColors.HotTrack;
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.label1.Location = new System.Drawing.Point(12, 275);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(480, 72);
this.label1.TabIndex = 1;
this.label1.Text = "label1";
//
// DataGridViewForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(504, 356);
this.Controls.Add(this.label1);
this.Controls.Add(this.dgv);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(510, 330);
this.Name = "DataGridViewForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "DataGridView";
this.Load += new System.EventHandler(this.DataGridViewForm_Load);
((System.ComponentModel.ISupportInitialize)(this.dgv)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView dgv;
private SMAH1.Forms.DataGridViewComponent.DataGridViewRowNumberColumn Column1;
private SMAH1.Forms.DataGridViewComponent.DataGridViewNumTextBoxColumn Column2;
private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
private SMAH1.Forms.DataGridViewComponent.DataGridViewProgressColumn ColumnStatus;
private System.Windows.Forms.Label label1;
}
}