-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSelectMultipleItems.designer.cs
More file actions
136 lines (130 loc) · 6.43 KB
/
SelectMultipleItems.designer.cs
File metadata and controls
136 lines (130 loc) · 6.43 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
namespace SqlStatementGenerator
{
partial class SelectMultipleItems
{
/// <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.btnSelect = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.chklstListBox = new System.Windows.Forms.CheckedListBox();
this.lblDescription = new System.Windows.Forms.Label();
this.lnkUncheckAll = new System.Windows.Forms.LinkLabel();
this.lnkCheckAll = new System.Windows.Forms.LinkLabel();
this.SuspendLayout();
//
// btnSelect
//
this.btnSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnSelect.Location = new System.Drawing.Point(255, 35);
this.btnSelect.Name = "btnSelect";
this.btnSelect.Size = new System.Drawing.Size(75, 23);
this.btnSelect.TabIndex = 0;
this.btnSelect.Text = "Select";
this.btnSelect.UseVisualStyleBackColor = true;
this.btnSelect.Click += new System.EventHandler(this.btnSelect_Click);
//
// btnCancel
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancel.Location = new System.Drawing.Point(255, 64);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 1;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// chklstListBox
//
this.chklstListBox.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.chklstListBox.CheckOnClick = true;
this.chklstListBox.FormattingEnabled = true;
this.chklstListBox.Location = new System.Drawing.Point(12, 35);
this.chklstListBox.Name = "chklstTableList";
this.chklstListBox.Size = new System.Drawing.Size(234, 544);
this.chklstListBox.TabIndex = 3;
//
// lblDescription
//
this.lblDescription.AutoSize = true;
this.lblDescription.Location = new System.Drawing.Point(9, 19);
this.lblDescription.Name = "lblDescription";
this.lblDescription.Size = new System.Drawing.Size(137, 13);
this.lblDescription.TabIndex = 4;
this.lblDescription.Text = "Database Tables Available:";
//
// lnkUncheckAll
//
this.lnkUncheckAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.lnkUncheckAll.AutoSize = true;
this.lnkUncheckAll.Location = new System.Drawing.Point(181, 584);
this.lnkUncheckAll.Name = "lnkUncheckAll";
this.lnkUncheckAll.Size = new System.Drawing.Size(65, 13);
this.lnkUncheckAll.TabIndex = 5;
this.lnkUncheckAll.TabStop = true;
this.lnkUncheckAll.Text = "Uncheck All";
this.lnkUncheckAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkUncheckAll_LinkClicked);
//
// lnkCheckAll
//
this.lnkCheckAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.lnkCheckAll.AutoSize = true;
this.lnkCheckAll.Location = new System.Drawing.Point(12, 584);
this.lnkCheckAll.Name = "lnkCheckAll";
this.lnkCheckAll.Size = new System.Drawing.Size(52, 13);
this.lnkCheckAll.TabIndex = 6;
this.lnkCheckAll.TabStop = true;
this.lnkCheckAll.Text = "Check All";
this.lnkCheckAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkCheckAll_LinkClicked);
//
// SelectMultipleItems
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(341, 612);
this.Controls.Add(this.lnkCheckAll);
this.Controls.Add(this.lnkUncheckAll);
this.Controls.Add(this.lblDescription);
this.Controls.Add(this.chklstListBox);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnSelect);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SelectMultipleItems";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Select Tables";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnSelect;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.CheckedListBox chklstListBox;
private System.Windows.Forms.Label lblDescription;
private System.Windows.Forms.LinkLabel lnkUncheckAll;
private System.Windows.Forms.LinkLabel lnkCheckAll;
}
}