-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLINQQueryEditor.Designer.cs
More file actions
172 lines (167 loc) · 6.81 KB
/
LINQQueryEditor.Designer.cs
File metadata and controls
172 lines (167 loc) · 6.81 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
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
namespace JSONist
{
partial class LINQQueryEditor
{
/// <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()
{
components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LINQQueryEditor));
toolStrip1 = new ToolStrip();
toolStripButton1 = new ToolStripButton();
toolStripButton2 = new ToolStripButton();
splitContainer1 = new SplitContainer();
textBox1 = new TextBox();
listBox1 = new ListBox();
statusStrip1 = new StatusStrip();
toolStripStatusLabel1 = new ToolStripStatusLabel();
timer1 = new System.Windows.Forms.Timer(components);
toolStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)splitContainer1).BeginInit();
splitContainer1.Panel1.SuspendLayout();
splitContainer1.Panel2.SuspendLayout();
splitContainer1.SuspendLayout();
statusStrip1.SuspendLayout();
SuspendLayout();
//
// toolStrip1
//
toolStrip1.ImageScalingSize = new Size(32, 32);
toolStrip1.Items.AddRange(new ToolStripItem[] { toolStripButton1, toolStripButton2 });
toolStrip1.Location = new Point(0, 0);
toolStrip1.Name = "toolStrip1";
toolStrip1.Size = new Size(800, 42);
toolStrip1.TabIndex = 0;
toolStrip1.Text = "toolStrip1";
//
// toolStripButton1
//
toolStripButton1.DisplayStyle = ToolStripItemDisplayStyle.Text;
toolStripButton1.Image = (Image)resources.GetObject("toolStripButton1.Image");
toolStripButton1.ImageTransparentColor = Color.Magenta;
toolStripButton1.Name = "toolStripButton1";
toolStripButton1.Size = new Size(191, 36);
toolStripButton1.Text = "&Close and Apply";
toolStripButton1.Click += toolStripButton1_Click;
//
// toolStripButton2
//
toolStripButton2.DisplayStyle = ToolStripItemDisplayStyle.Text;
toolStripButton2.Image = (Image)resources.GetObject("toolStripButton2.Image");
toolStripButton2.ImageTransparentColor = Color.Magenta;
toolStripButton2.Name = "toolStripButton2";
toolStripButton2.Size = new Size(60, 36);
toolStripButton2.Text = "&Test";
toolStripButton2.Click += toolStripButton2_Click;
//
// splitContainer1
//
splitContainer1.Dock = DockStyle.Fill;
splitContainer1.Location = new Point(0, 42);
splitContainer1.Name = "splitContainer1";
splitContainer1.Orientation = Orientation.Horizontal;
//
// splitContainer1.Panel1
//
splitContainer1.Panel1.Controls.Add(textBox1);
//
// splitContainer1.Panel2
//
splitContainer1.Panel2.Controls.Add(listBox1);
splitContainer1.Size = new Size(800, 408);
splitContainer1.SplitterDistance = 73;
splitContainer1.TabIndex = 1;
//
// textBox1
//
textBox1.Dock = DockStyle.Fill;
textBox1.Location = new Point(0, 0);
textBox1.Multiline = true;
textBox1.Name = "textBox1";
textBox1.Size = new Size(800, 73);
textBox1.TabIndex = 0;
//
// listBox1
//
listBox1.Dock = DockStyle.Fill;
listBox1.FormattingEnabled = true;
listBox1.Location = new Point(0, 0);
listBox1.Name = "listBox1";
listBox1.Size = new Size(800, 331);
listBox1.TabIndex = 0;
//
// statusStrip1
//
statusStrip1.ImageScalingSize = new Size(32, 32);
statusStrip1.Items.AddRange(new ToolStripItem[] { toolStripStatusLabel1 });
statusStrip1.Location = new Point(0, 408);
statusStrip1.Name = "statusStrip1";
statusStrip1.Size = new Size(800, 42);
statusStrip1.TabIndex = 2;
statusStrip1.Text = "statusStrip1";
//
// toolStripStatusLabel1
//
toolStripStatusLabel1.Name = "toolStripStatusLabel1";
toolStripStatusLabel1.Size = new Size(169, 32);
toolStripStatusLabel1.Text = "0 Items Visible";
//
// timer1
//
timer1.Tick += timer1_Tick;
//
// LINQQueryEditor
//
AutoScaleDimensions = new SizeF(13F, 32F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(statusStrip1);
Controls.Add(splitContainer1);
Controls.Add(toolStrip1);
Name = "LINQQueryEditor";
Text = "LINQ Query Editor";
Load += LINQQueryEditor_Load;
toolStrip1.ResumeLayout(false);
toolStrip1.PerformLayout();
splitContainer1.Panel1.ResumeLayout(false);
splitContainer1.Panel1.PerformLayout();
splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)splitContainer1).EndInit();
splitContainer1.ResumeLayout(false);
statusStrip1.ResumeLayout(false);
statusStrip1.PerformLayout();
ResumeLayout(false);
PerformLayout();
}
#endregion
private ToolStrip toolStrip1;
private ToolStripButton toolStripButton1;
private ToolStripButton toolStripButton2;
private SplitContainer splitContainer1;
private TextBox textBox1;
private ListBox listBox1;
private StatusStrip statusStrip1;
private ToolStripStatusLabel toolStripStatusLabel1;
private System.Windows.Forms.Timer timer1;
}
}