-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmPattern.Designer.cs
119 lines (114 loc) · 4.59 KB
/
FrmPattern.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
namespace QA_Tools
{
partial class FrmPattern
{
/// <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.pnlMain = new System.Windows.Forms.Panel();
this.panel2 = new System.Windows.Forms.Panel();
this.chklbxPattern = new System.Windows.Forms.CheckedListBox();
this.btnApply = new System.Windows.Forms.Button();
this.cbxAll = new System.Windows.Forms.CheckBox();
this.pnlMain.SuspendLayout();
this.panel2.SuspendLayout();
this.SuspendLayout();
//
// pnlMain
//
this.pnlMain.Controls.Add(this.btnApply);
this.pnlMain.Controls.Add(this.chklbxPattern);
this.pnlMain.Controls.Add(this.panel2);
this.pnlMain.Dock = System.Windows.Forms.DockStyle.Fill;
this.pnlMain.Location = new System.Drawing.Point(0, 0);
this.pnlMain.Name = "pnlMain";
this.pnlMain.Size = new System.Drawing.Size(130, 179);
this.pnlMain.TabIndex = 1;
//
// panel2
//
this.panel2.Controls.Add(this.cbxAll);
this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
this.panel2.Location = new System.Drawing.Point(0, 0);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(130, 41);
this.panel2.TabIndex = 1;
//
// chklbxPattern
//
this.chklbxPattern.FormattingEnabled = true;
this.chklbxPattern.Items.AddRange(new object[] {
"F*.nnn",
"Y*.nnn",
"*.ack",
"*.exe",
"*.txt"});
this.chklbxPattern.Location = new System.Drawing.Point(13, 57);
this.chklbxPattern.Name = "chklbxPattern";
this.chklbxPattern.Size = new System.Drawing.Size(104, 79);
this.chklbxPattern.TabIndex = 2;
//
// btnApply
//
this.btnApply.Location = new System.Drawing.Point(58, 142);
this.btnApply.Name = "btnApply";
this.btnApply.Size = new System.Drawing.Size(59, 23);
this.btnApply.TabIndex = 3;
this.btnApply.Text = "Ok";
this.btnApply.UseVisualStyleBackColor = true;
//
// cbxAll
//
this.cbxAll.AutoSize = true;
this.cbxAll.Location = new System.Drawing.Point(16, 13);
this.cbxAll.Name = "cbxAll";
this.cbxAll.Size = new System.Drawing.Size(37, 17);
this.cbxAll.TabIndex = 0;
this.cbxAll.Text = "*.*";
this.cbxAll.UseVisualStyleBackColor = true;
this.cbxAll.CheckedChanged += new System.EventHandler(this.CbxAll_CheckedChanged);
//
// FrmPattern
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(130, 179);
this.ControlBox = false;
this.Controls.Add(this.pnlMain);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "FrmPattern";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.pnlMain.ResumeLayout(false);
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.CheckedListBox chklbxPattern;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Button btnApply;
private System.Windows.Forms.CheckBox cbxAll;
public System.Windows.Forms.Panel pnlMain;
}
}