Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.BioBoost/HeuristicLab.Problems.BioBoost.Views/3.3/FilterDialog.Designer.cs @ 13073

Last change on this file since 13073 was 13072, checked in by gkronber, 9 years ago

#2499: added code from HeuristicLab.BioBoost.Views (from private repository) nothing much has been changed

File size: 5.9 KB
Line 
1namespace HeuristicLab.BioBoost.Views {
2  partial class FilterDialog {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.components = new System.ComponentModel.Container();
27      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FilterDialog));
28      this.label1 = new System.Windows.Forms.Label();
29      this.textBox1 = new System.Windows.Forms.TextBox();
30      this.keepOption = new System.Windows.Forms.RadioButton();
31      this.removeOption = new System.Windows.Forms.RadioButton();
32      this.okButton = new System.Windows.Forms.Button();
33      this.cancelButton = new System.Windows.Forms.Button();
34      this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
35      ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
36      this.SuspendLayout();
37      //
38      // label1
39      //
40      this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
41            | System.Windows.Forms.AnchorStyles.Right)));
42      this.label1.Location = new System.Drawing.Point(13, 13);
43      this.label1.Name = "label1";
44      this.label1.Size = new System.Drawing.Size(445, 48);
45      this.label1.TabIndex = 0;
46      this.label1.Text = resources.GetString("label1.Text");
47      //
48      // textBox1
49      //
50      this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
51            | System.Windows.Forms.AnchorStyles.Right)));
52      this.textBox1.Location = new System.Drawing.Point(12, 89);
53      this.textBox1.Name = "textBox1";
54      this.textBox1.Size = new System.Drawing.Size(446, 20);
55      this.textBox1.TabIndex = 1;
56      this.textBox1.Text = "^(FR|BE|NL|LU)";
57      this.textBox1.Validating += new System.ComponentModel.CancelEventHandler(this.textBox1_Validating);
58      this.textBox1.Validated += new System.EventHandler(this.textBox1_Validated);
59      //
60      // keepOption
61      //
62      this.keepOption.AutoSize = true;
63      this.keepOption.Checked = true;
64      this.keepOption.Location = new System.Drawing.Point(12, 118);
65      this.keepOption.Name = "keepOption";
66      this.keepOption.Size = new System.Drawing.Size(49, 17);
67      this.keepOption.TabIndex = 2;
68      this.keepOption.TabStop = true;
69      this.keepOption.Text = "&keep";
70      this.keepOption.UseVisualStyleBackColor = true;
71      this.keepOption.CheckedChanged += new System.EventHandler(this.keepOption_CheckedChanged);
72      //
73      // removeOption
74      //
75      this.removeOption.AutoSize = true;
76      this.removeOption.Location = new System.Drawing.Point(67, 118);
77      this.removeOption.Name = "removeOption";
78      this.removeOption.Size = new System.Drawing.Size(60, 17);
79      this.removeOption.TabIndex = 3;
80      this.removeOption.Text = "&remove";
81      this.removeOption.UseVisualStyleBackColor = true;
82      this.removeOption.CheckedChanged += new System.EventHandler(this.keepOption_CheckedChanged);
83      //
84      // okButton
85      //
86      this.okButton.Location = new System.Drawing.Point(383, 115);
87      this.okButton.Name = "okButton";
88      this.okButton.Size = new System.Drawing.Size(75, 23);
89      this.okButton.TabIndex = 5;
90      this.okButton.Text = "&OK";
91      this.okButton.UseVisualStyleBackColor = true;
92      this.okButton.Click += new System.EventHandler(this.okButton_Click);
93      //
94      // cancelButton
95      //
96      this.cancelButton.Location = new System.Drawing.Point(302, 115);
97      this.cancelButton.Name = "cancelButton";
98      this.cancelButton.Size = new System.Drawing.Size(75, 23);
99      this.cancelButton.TabIndex = 4;
100      this.cancelButton.Text = "&Cancel";
101      this.cancelButton.UseVisualStyleBackColor = true;
102      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
103      //
104      // errorProvider1
105      //
106      this.errorProvider1.ContainerControl = this;
107      //
108      // FilterDialog
109      //
110      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
111      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
112      this.ClientSize = new System.Drawing.Size(470, 148);
113      this.ControlBox = false;
114      this.Controls.Add(this.cancelButton);
115      this.Controls.Add(this.okButton);
116      this.Controls.Add(this.removeOption);
117      this.Controls.Add(this.keepOption);
118      this.Controls.Add(this.textBox1);
119      this.Controls.Add(this.label1);
120      this.Name = "FilterDialog";
121      this.Text = "Filter Regions";
122      this.TopMost = true;
123      ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
124      this.ResumeLayout(false);
125      this.PerformLayout();
126
127    }
128
129    #endregion
130
131    private System.Windows.Forms.Label label1;
132    private System.Windows.Forms.TextBox textBox1;
133    private System.Windows.Forms.RadioButton keepOption;
134    private System.Windows.Forms.RadioButton removeOption;
135    private System.Windows.Forms.Button okButton;
136    private System.Windows.Forms.Button cancelButton;
137    private System.Windows.Forms.ErrorProvider errorProvider1;
138  }
139}
Note: See TracBrowser for help on using the repository browser.