forked from olejorgensen/CompactView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ImportForm.Designer.cs
159 lines (153 loc) · 7.52 KB
/
ImportForm.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
namespace CompactView
{
partial class ImportForm
{
/// <summary>
/// Variable del diseñador requerida.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Limpiar los recursos que se estén utilizando.
/// </summary>
/// <param name="disposing">true si los recursos administrados se deben eliminar; false en caso contrario, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Método necesario para admitir el Diseñador. No se puede modificar
/// el contenido del método con el editor de código.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ImportForm));
this.treeDb = new System.Windows.Forms.TreeView();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.cbSchema = new System.Windows.Forms.CheckBox();
this.btnImport = new System.Windows.Forms.Button();
this.cbData = new System.Windows.Forms.CheckBox();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
this.statusStrip1.SuspendLayout();
this.SuspendLayout();
//
// treeDb
//
this.treeDb.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.treeDb.CheckBoxes = true;
this.treeDb.ImageIndex = 0;
this.treeDb.ImageList = this.imageList1;
this.treeDb.Location = new System.Drawing.Point(12, 12);
this.treeDb.Name = "treeDb";
this.treeDb.SelectedImageIndex = 0;
this.treeDb.ShowPlusMinus = false;
this.treeDb.ShowRootLines = false;
this.treeDb.Size = new System.Drawing.Size(397, 316);
this.treeDb.TabIndex = 1;
this.treeDb.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.treeDb_BeforeSelect);
this.treeDb.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeDb_NodeMouseClick);
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.White;
this.imageList1.Images.SetKeyName(0, "table-small.png");
//
// cbSchema
//
this.cbSchema.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.cbSchema.AutoSize = true;
this.cbSchema.Location = new System.Drawing.Point(12, 339);
this.cbSchema.Name = "cbSchema";
this.cbSchema.Size = new System.Drawing.Size(65, 17);
this.cbSchema.TabIndex = 2;
this.cbSchema.Text = "Schema";
this.cbSchema.UseVisualStyleBackColor = true;
//
// btnImport
//
this.btnImport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnImport.Location = new System.Drawing.Point(326, 335);
this.btnImport.Name = "btnImport";
this.btnImport.Size = new System.Drawing.Size(83, 23);
this.btnImport.TabIndex = 3;
this.btnImport.Text = "Import";
this.btnImport.UseVisualStyleBackColor = true;
this.btnImport.Click += new System.EventHandler(this.btnImport_Click);
//
// cbData
//
this.cbData.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.cbData.AutoSize = true;
this.cbData.Location = new System.Drawing.Point(136, 339);
this.cbData.Name = "cbData";
this.cbData.Size = new System.Drawing.Size(49, 17);
this.cbData.TabIndex = 2;
this.cbData.Text = "Data";
this.cbData.UseVisualStyleBackColor = true;
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
this.openFileDialog1.Filter = "SQL text files (*.sql)|*.sql|Text files|*.txt|All files|*.*";
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripProgressBar1});
this.statusStrip1.Location = new System.Drawing.Point(0, 365);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(422, 22);
this.statusStrip1.TabIndex = 4;
this.statusStrip1.Text = "statusStrip1";
this.statusStrip1.SizeChanged += new System.EventHandler(this.statusStrip1_SizeChanged);
//
// toolStripProgressBar1
//
this.toolStripProgressBar1.AutoSize = false;
this.toolStripProgressBar1.Name = "toolStripProgressBar1";
this.toolStripProgressBar1.Size = new System.Drawing.Size(200, 16);
//
// ImportForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(422, 387);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.btnImport);
this.Controls.Add(this.cbData);
this.Controls.Add(this.cbSchema);
this.Controls.Add(this.treeDb);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(325, 218);
this.Name = "ImportForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Import";
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TreeView treeDb;
private System.Windows.Forms.CheckBox cbSchema;
private System.Windows.Forms.Button btnImport;
private System.Windows.Forms.CheckBox cbData;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.ImageList imageList1;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1;
}
}