-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
126 lines (119 loc) · 5.56 KB
/
Form1.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
namespace Total_Commander
{
partial class Form1
{
/// <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.cb_partitie_1 = new System.Windows.Forms.ComboBox();
this.lv_locatie_1 = new System.Windows.Forms.ListView();
this.tb_path_1 = new System.Windows.Forms.TextBox();
this.lv_locatie_2 = new System.Windows.Forms.ListView();
this.cb_partitie_2 = new System.Windows.Forms.ComboBox();
this.tb_path_2 = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// cb_partitie_1
//
this.cb_partitie_1.FormattingEnabled = true;
this.cb_partitie_1.Location = new System.Drawing.Point(0, 0);
this.cb_partitie_1.Name = "cb_partitie_1";
this.cb_partitie_1.Size = new System.Drawing.Size(49, 23);
this.cb_partitie_1.TabIndex = 0;
this.cb_partitie_1.SelectedIndexChanged += new System.EventHandler(this.cb_partitions_1_SelectedIndexChanged);
//
// lv_locatie_1
//
this.lv_locatie_1.HideSelection = false;
this.lv_locatie_1.Location = new System.Drawing.Point(0, 56);
this.lv_locatie_1.Name = "lv_locatie_1";
this.lv_locatie_1.Size = new System.Drawing.Size(121, 97);
this.lv_locatie_1.TabIndex = 1;
this.lv_locatie_1.UseCompatibleStateImageBehavior = false;
this.lv_locatie_1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lv_locatie_1_MouseDoubleClick);
//
// tb_path_1
//
this.tb_path_1.Location = new System.Drawing.Point(0, 27);
this.tb_path_1.Name = "tb_path_1";
this.tb_path_1.ReadOnly = true;
this.tb_path_1.Size = new System.Drawing.Size(361, 23);
this.tb_path_1.TabIndex = 2;
this.tb_path_1.TextChanged += new System.EventHandler(this.tb_path_1_TextChanged);
//
// lv_locatie_2
//
this.lv_locatie_2.HideSelection = false;
this.lv_locatie_2.Location = new System.Drawing.Point(975, 56);
this.lv_locatie_2.Name = "lv_locatie_2";
this.lv_locatie_2.Size = new System.Drawing.Size(121, 97);
this.lv_locatie_2.TabIndex = 3;
this.lv_locatie_2.UseCompatibleStateImageBehavior = false;
this.lv_locatie_2.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lv_locatie_2_MouseDoubleClick);
//
// cb_partitie_2
//
this.cb_partitie_2.FormattingEnabled = true;
this.cb_partitie_2.Location = new System.Drawing.Point(1047, 0);
this.cb_partitie_2.Name = "cb_partitie_2";
this.cb_partitie_2.Size = new System.Drawing.Size(49, 23);
this.cb_partitie_2.TabIndex = 4;
this.cb_partitie_2.SelectedIndexChanged += new System.EventHandler(this.cb_partitie_2_SelectedIndexChanged);
//
// tb_path_2
//
this.tb_path_2.Location = new System.Drawing.Point(735, 27);
this.tb_path_2.Name = "tb_path_2";
this.tb_path_2.ReadOnly = true;
this.tb_path_2.Size = new System.Drawing.Size(361, 23);
this.tb_path_2.TabIndex = 5;
this.tb_path_2.TextChanged += new System.EventHandler(this.tb_path_2_TextChanged);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1097, 686);
this.Controls.Add(this.tb_path_2);
this.Controls.Add(this.cb_partitie_2);
this.Controls.Add(this.lv_locatie_2);
this.Controls.Add(this.tb_path_1);
this.Controls.Add(this.lv_locatie_1);
this.Controls.Add(this.cb_partitie_1);
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "Double File Explorer Test";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox cb_partitie_1;
private System.Windows.Forms.ListView lv_locatie_1;
private System.Windows.Forms.TextBox tb_path_1;
private System.Windows.Forms.ListView lv_locatie_2;
private System.Windows.Forms.ComboBox cb_partitie_2;
private System.Windows.Forms.TextBox tb_path_2;
}
}