-
Notifications
You must be signed in to change notification settings - Fork 8
/
AddFilterDialog.Designer.cs
119 lines (113 loc) · 5.58 KB
/
AddFilterDialog.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 Ndexer {
partial class AddFilterDialog {
/// <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 () {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddFilterDialog));
this.gbOptions = new System.Windows.Forms.GroupBox();
this.lblFilter = new System.Windows.Forms.Label();
this.txtFilter = new System.Windows.Forms.TextBox();
this.cmdCancel = new System.Windows.Forms.Button();
this.cmdOK = new System.Windows.Forms.Button();
this.gbOptions.SuspendLayout();
this.SuspendLayout();
//
// gbOptions
//
this.gbOptions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.gbOptions.Controls.Add(this.lblFilter);
this.gbOptions.Controls.Add(this.txtFilter);
this.gbOptions.Location = new System.Drawing.Point(3, 3);
this.gbOptions.Name = "gbOptions";
this.gbOptions.Size = new System.Drawing.Size(388, 45);
this.gbOptions.TabIndex = 0;
this.gbOptions.TabStop = false;
this.gbOptions.Text = "Options";
//
// lblFilter
//
this.lblFilter.AutoSize = true;
this.lblFilter.Location = new System.Drawing.Point(9, 22);
this.lblFilter.Name = "lblFilter";
this.lblFilter.Size = new System.Drawing.Size(43, 13);
this.lblFilter.TabIndex = 2;
this.lblFilter.Text = "&Filter(s):";
//
// txtFilter
//
this.txtFilter.Location = new System.Drawing.Point(73, 19);
this.txtFilter.Name = "txtFilter";
this.txtFilter.Size = new System.Drawing.Size(309, 20);
this.txtFilter.TabIndex = 3;
this.txtFilter.Text = "*.*";
//
// cmdCancel
//
this.cmdCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cmdCancel.Location = new System.Drawing.Point(301, 51);
this.cmdCancel.Name = "cmdCancel";
this.cmdCancel.Size = new System.Drawing.Size(90, 25);
this.cmdCancel.TabIndex = 2;
this.cmdCancel.Text = "Cancel";
this.cmdCancel.UseVisualStyleBackColor = true;
//
// cmdOK
//
this.cmdOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.cmdOK.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cmdOK.Location = new System.Drawing.Point(209, 51);
this.cmdOK.Name = "cmdOK";
this.cmdOK.Size = new System.Drawing.Size(90, 25);
this.cmdOK.TabIndex = 1;
this.cmdOK.Text = "OK";
this.cmdOK.UseVisualStyleBackColor = true;
//
// AddFilterDialog
//
this.AcceptButton = this.cmdOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.cmdCancel;
this.ClientSize = new System.Drawing.Size(394, 79);
this.Controls.Add(this.cmdOK);
this.Controls.Add(this.cmdCancel);
this.Controls.Add(this.gbOptions);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AddFilterDialog";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Add Filter";
this.gbOptions.ResumeLayout(false);
this.gbOptions.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox gbOptions;
private System.Windows.Forms.Button cmdCancel;
private System.Windows.Forms.Button cmdOK;
private System.Windows.Forms.Label lblFilter;
private System.Windows.Forms.TextBox txtFilter;
}
}