[7968] | 1 | namespace HeuristicLab.DataImporter.Command.View {
|
---|
[8586] | 2 | partial class DeleteWithThresholdView {
|
---|
[7968] | 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 Component 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.txtThreshold = new System.Windows.Forms.TextBox();
|
---|
| 27 | this.lblThreshold = new System.Windows.Forms.Label();
|
---|
| 28 | this.SuspendLayout();
|
---|
| 29 | //
|
---|
| 30 | // txtThreshold
|
---|
| 31 | //
|
---|
| 32 | this.txtThreshold.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 33 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 34 | this.txtThreshold.Location = new System.Drawing.Point(66, 3);
|
---|
| 35 | this.txtThreshold.Name = "txtThreshold";
|
---|
| 36 | this.txtThreshold.Size = new System.Drawing.Size(100, 20);
|
---|
| 37 | this.txtThreshold.TabIndex = 0;
|
---|
| 38 | this.txtThreshold.Validating += new System.ComponentModel.CancelEventHandler(this.txtThreshold_Validating);
|
---|
| 39 | //
|
---|
| 40 | // lblThreshold
|
---|
| 41 | //
|
---|
| 42 | this.lblThreshold.AutoSize = true;
|
---|
| 43 | this.lblThreshold.Location = new System.Drawing.Point(3, 6);
|
---|
| 44 | this.lblThreshold.Name = "lblThreshold";
|
---|
| 45 | this.lblThreshold.Size = new System.Drawing.Size(57, 13);
|
---|
| 46 | this.lblThreshold.TabIndex = 1;
|
---|
| 47 | this.lblThreshold.Text = "Threshold:";
|
---|
| 48 | //
|
---|
| 49 | // DeleteWithThreshold
|
---|
| 50 | //
|
---|
| 51 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 52 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 53 | this.Controls.Add(this.lblThreshold);
|
---|
| 54 | this.Controls.Add(this.txtThreshold);
|
---|
| 55 | this.Name = "DeleteWithThreshold";
|
---|
| 56 | this.Size = new System.Drawing.Size(173, 28);
|
---|
| 57 | this.ResumeLayout(false);
|
---|
| 58 | this.PerformLayout();
|
---|
| 59 |
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | #endregion
|
---|
| 63 |
|
---|
| 64 | private System.Windows.Forms.TextBox txtThreshold;
|
---|
| 65 | private System.Windows.Forms.Label lblThreshold;
|
---|
| 66 | }
|
---|
| 67 | }
|
---|