forked from TansuoTro/MineRealmsUupdateSystem-Server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
FileVersionForm.Designer.cs
212 lines (205 loc) · 11 KB
/
FileVersionForm.Designer.cs
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
namespace MRUS.Server
{
partial class FileVersionForm
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FileVersionForm));
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.LastUpdateTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.fileObjectBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.button_add = new System.Windows.Forms.Button();
this.button_delete = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label_lastVersion = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.fileObjectBindingSource)).BeginInit();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.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.groupBox1.Controls.Add(this.dataGridView1);
this.groupBox1.Location = new System.Drawing.Point(1, 0);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(575, 439);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
//
// dataGridView1
//
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AllowUserToDeleteRows = false;
this.dataGridView1.AllowUserToOrderColumns = true;
this.dataGridView1.AutoGenerateColumns = false;
this.dataGridView1.BackgroundColor = System.Drawing.Color.White;
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Column1,
this.dataGridViewTextBoxColumn2,
this.LastUpdateTime});
this.dataGridView1.DataSource = this.fileObjectBindingSource;
this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridView1.Location = new System.Drawing.Point(3, 17);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.ReadOnly = true;
this.dataGridView1.RowHeadersVisible = false;
this.dataGridView1.RowTemplate.Height = 23;
this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dataGridView1.Size = new System.Drawing.Size(569, 419);
this.dataGridView1.TabIndex = 0;
this.dataGridView1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.dataGridView1_MouseDoubleClick);
//
// Column1
//
this.Column1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Column1.DataPropertyName = "FileRelativePath";
this.Column1.HeaderText = "文件";
this.Column1.Name = "Column1";
this.Column1.ReadOnly = true;
//
// dataGridViewTextBoxColumn2
//
this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
this.dataGridViewTextBoxColumn2.DataPropertyName = "Version";
this.dataGridViewTextBoxColumn2.FillWeight = 50F;
this.dataGridViewTextBoxColumn2.HeaderText = "版本";
this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
this.dataGridViewTextBoxColumn2.ReadOnly = true;
this.dataGridViewTextBoxColumn2.Width = 80;
//
// LastUpdateTime
//
this.LastUpdateTime.DataPropertyName = "LastUpdateTime";
dataGridViewCellStyle1.Format = "G";
dataGridViewCellStyle1.NullValue = null;
this.LastUpdateTime.DefaultCellStyle = dataGridViewCellStyle1;
this.LastUpdateTime.HeaderText = "更新时间";
this.LastUpdateTime.Name = "LastUpdateTime";
this.LastUpdateTime.ReadOnly = true;
this.LastUpdateTime.Width = 150;
//
// fileObjectBindingSource
//
this.fileObjectBindingSource.DataSource = typeof(MRUS.Core.FileUnit);
//
// button_add
//
this.button_add.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.button_add.Location = new System.Drawing.Point(231, 469);
this.button_add.Name = "button_add";
this.button_add.Size = new System.Drawing.Size(43, 23);
this.button_add.TabIndex = 1;
this.button_add.Text = "添加";
this.button_add.UseVisualStyleBackColor = true;
this.button_add.Click += new System.EventHandler(this.button_add_Click);
//
// button_delete
//
this.button_delete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.button_delete.Location = new System.Drawing.Point(280, 469);
this.button_delete.Name = "button_delete";
this.button_delete.Size = new System.Drawing.Size(43, 23);
this.button_delete.TabIndex = 3;
this.button_delete.Text = "删除";
this.button_delete.UseVisualStyleBackColor = true;
this.button_delete.Click += new System.EventHandler(this.button_delete_Click);
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 474);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(203, 12);
this.label1.TabIndex = 4;
this.label1.Text = "最后更新时间:2011-09-03 12:00:00";
//
// label_lastVersion
//
this.label_lastVersion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label_lastVersion.AutoSize = true;
this.label_lastVersion.Location = new System.Drawing.Point(12, 452);
this.label_lastVersion.Name = "label_lastVersion";
this.label_lastVersion.Size = new System.Drawing.Size(95, 12);
this.label_lastVersion.TabIndex = 4;
this.label_lastVersion.Text = "最后综合版本:1";
//
// button1
//
this.button1.Location = new System.Drawing.Point(498, 469);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 5;
this.button1.Text = "自动扫描";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// FileVersionForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(577, 504);
this.Controls.Add(this.button1);
this.Controls.Add(this.label_lastVersion);
this.Controls.Add(this.label1);
this.Controls.Add(this.button_delete);
this.Controls.Add(this.button_add);
this.Controls.Add(this.groupBox1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FileVersionForm";
this.Text = "文件版本信息";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FileVersionForm_FormClosing);
this.groupBox1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.fileObjectBindingSource)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.Button button_add;
private System.Windows.Forms.Button button_delete;
private System.Windows.Forms.DataGridViewTextBoxColumn fileNameDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn versionDataGridViewTextBoxColumn;
private System.Windows.Forms.BindingSource fileObjectBindingSource;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
private System.Windows.Forms.DataGridViewTextBoxColumn LastUpdateTime;
private System.Windows.Forms.Label label_lastVersion;
private System.Windows.Forms.Button button1;
}
}