#region License Information /* HeuristicLab * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion namespace HeuristicLab.BioBoost.Views { partial class FilterDialog { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FilterDialog)); this.label1 = new System.Windows.Forms.Label(); this.textBox1 = new System.Windows.Forms.TextBox(); this.keepOption = new System.Windows.Forms.RadioButton(); this.removeOption = new System.Windows.Forms.RadioButton(); this.okButton = new System.Windows.Forms.Button(); this.cancelButton = new System.Windows.Forms.Button(); this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components); ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit(); this.SuspendLayout(); // // label1 // this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.label1.Location = new System.Drawing.Point(13, 13); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(445, 48); this.label1.TabIndex = 0; this.label1.Text = resources.GetString("label1.Text"); // // textBox1 // this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.textBox1.Location = new System.Drawing.Point(12, 89); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(446, 20); this.textBox1.TabIndex = 1; this.textBox1.Text = "^(FR|BE|NL|LU)"; this.textBox1.Validating += new System.ComponentModel.CancelEventHandler(this.textBox1_Validating); this.textBox1.Validated += new System.EventHandler(this.textBox1_Validated); // // keepOption // this.keepOption.AutoSize = true; this.keepOption.Checked = true; this.keepOption.Location = new System.Drawing.Point(12, 118); this.keepOption.Name = "keepOption"; this.keepOption.Size = new System.Drawing.Size(49, 17); this.keepOption.TabIndex = 2; this.keepOption.TabStop = true; this.keepOption.Text = "&keep"; this.keepOption.UseVisualStyleBackColor = true; this.keepOption.CheckedChanged += new System.EventHandler(this.keepOption_CheckedChanged); // // removeOption // this.removeOption.AutoSize = true; this.removeOption.Location = new System.Drawing.Point(67, 118); this.removeOption.Name = "removeOption"; this.removeOption.Size = new System.Drawing.Size(60, 17); this.removeOption.TabIndex = 3; this.removeOption.Text = "&remove"; this.removeOption.UseVisualStyleBackColor = true; this.removeOption.CheckedChanged += new System.EventHandler(this.keepOption_CheckedChanged); // // okButton // this.okButton.Location = new System.Drawing.Point(383, 115); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 23); this.okButton.TabIndex = 5; this.okButton.Text = "&OK"; this.okButton.UseVisualStyleBackColor = true; this.okButton.Click += new System.EventHandler(this.okButton_Click); // // cancelButton // this.cancelButton.Location = new System.Drawing.Point(302, 115); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 4; this.cancelButton.Text = "&Cancel"; this.cancelButton.UseVisualStyleBackColor = true; this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click); // // errorProvider1 // this.errorProvider1.ContainerControl = this; // // FilterDialog // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(470, 148); this.ControlBox = false; this.Controls.Add(this.cancelButton); this.Controls.Add(this.okButton); this.Controls.Add(this.removeOption); this.Controls.Add(this.keepOption); this.Controls.Add(this.textBox1); this.Controls.Add(this.label1); this.Name = "FilterDialog"; this.Text = "Filter Regions"; this.TopMost = true; ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.RadioButton keepOption; private System.Windows.Forms.RadioButton removeOption; private System.Windows.Forms.Button okButton; private System.Windows.Forms.Button cancelButton; private System.Windows.Forms.ErrorProvider errorProvider1; } }