-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVersionInputForm.Designer.cs
More file actions
94 lines (79 loc) · 4.25 KB
/
Copy pathVersionInputForm.Designer.cs
File metadata and controls
94 lines (79 loc) · 4.25 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
namespace EasyVersionBackup
{
partial class VersionInputForm
{
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.DataGridView dataGridViewVersions;
private System.Windows.Forms.Button buttonOk;
private System.Windows.Forms.Button buttonCancel;
private System.Windows.Forms.Label labelInfo;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnSourceName;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnVersion;
private System.Windows.Forms.DataGridViewComboBoxColumn ColumnTag;
private System.Windows.Forms.CheckBox checkBoxIgnoreCopyErrors;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
dataGridViewVersions = new System.Windows.Forms.DataGridView();
ColumnSourceName = new System.Windows.Forms.DataGridViewTextBoxColumn();
ColumnVersion = new System.Windows.Forms.DataGridViewTextBoxColumn();
ColumnTag = new System.Windows.Forms.DataGridViewComboBoxColumn();
buttonOk = new System.Windows.Forms.Button();
buttonCancel = new System.Windows.Forms.Button();
labelInfo = new System.Windows.Forms.Label();
checkBoxIgnoreCopyErrors = new System.Windows.Forms.CheckBox();
((System.ComponentModel.ISupportInitialize)dataGridViewVersions).BeginInit();
SuspendLayout();
dataGridViewVersions.AllowUserToAddRows = false;
dataGridViewVersions.AllowUserToDeleteRows = false;
dataGridViewVersions.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridViewVersions.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { ColumnSourceName, ColumnVersion, ColumnTag });
dataGridViewVersions.Location = new System.Drawing.Point(12, 34);
dataGridViewVersions.Name = "dataGridViewVersions";
dataGridViewVersions.RowHeadersVisible = false;
dataGridViewVersions.Size = new System.Drawing.Size(522, 150);
ColumnSourceName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
ColumnSourceName.HeaderText = "Source";
ColumnSourceName.Width = 260;
ColumnVersion.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
ColumnVersion.HeaderText = "Version";
ColumnVersion.Width = 130;
ColumnTag.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
ColumnTag.HeaderText = "Tag";
ColumnTag.Width = 120;
ColumnTag.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
checkBoxIgnoreCopyErrors.Location = new System.Drawing.Point(12, 198);
checkBoxIgnoreCopyErrors.Text = "Ignore copy errors";
checkBoxIgnoreCopyErrors.AutoSize = true;
buttonOk.Location = new System.Drawing.Point(350, 234);
buttonOk.Size = new System.Drawing.Size(75, 28);
buttonOk.Text = "OK";
buttonOk.Click += buttonOk_Click;
buttonCancel.Location = new System.Drawing.Point(431, 234);
buttonCancel.Size = new System.Drawing.Size(75, 28);
buttonCancel.Text = "Cancel";
buttonCancel.Click += buttonCancel_Click;
labelInfo.AutoSize = true;
labelInfo.Location = new System.Drawing.Point(12, 9);
labelInfo.Text = "Check/adjust version values";
ClientSize = new System.Drawing.Size(560, 298);
Controls.Add(checkBoxIgnoreCopyErrors);
Controls.Add(labelInfo);
Controls.Add(buttonCancel);
Controls.Add(buttonOk);
Controls.Add(dataGridViewVersions);
StartPosition = System.Windows.Forms.FormStartPosition.Manual;
Text = "Backup Version";
((System.ComponentModel.ISupportInitialize)dataGridViewVersions).EndInit();
ResumeLayout(false);
PerformLayout();
}
}
}