Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectioComparisonConstraintView.Designer.cs @ 3632

Last change on this file since 3632 was 3632, checked in by mkommend, 14 years ago

corrected RunCollectionConstraints and the according views (ticket#970)

File size: 3.1 KB
Line 
1namespace HeuristicLab.Optimization.Views {
2  partial class RunCollectionComparisonConstraintView {
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.components = new System.ComponentModel.Container();
27      this.txtConstraintData = new System.Windows.Forms.TextBox();
28      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
29      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
30      this.SuspendLayout();
31      //
32      // txtConstraintData
33      //
34      this.txtConstraintData.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
35                  | System.Windows.Forms.AnchorStyles.Right)));
36      this.errorProvider.SetIconAlignment(this.txtConstraintData, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
37      this.errorProvider.SetIconPadding(this.txtConstraintData, 2);
38      this.txtConstraintData.Location = new System.Drawing.Point(127, 56);
39      this.txtConstraintData.Name = "txtConstraintData";
40      this.txtConstraintData.Size = new System.Drawing.Size(246, 20);
41      this.txtConstraintData.TabIndex = 9;
42      this.txtConstraintData.Validated += new System.EventHandler(this.txtConstraintData_Validated);
43      this.txtConstraintData.Validating += new System.ComponentModel.CancelEventHandler(this.txtConstraintData_Validating);
44      //
45      // errorProvider
46      //
47      this.errorProvider.ContainerControl = this;
48      //
49      // RunCollectionComparisonConstraintView
50      //
51      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
52      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
53      this.Controls.Add(this.txtConstraintData);
54      this.errorProvider.SetIconAlignment(this, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
55      this.Name = "RunCollectionComparisonConstraintView";
56      this.Controls.SetChildIndex(this.txtConstraintData, 0);
57      this.Controls.SetChildIndex(this.cmbConstraintOperation, 0);
58      this.Controls.SetChildIndex(this.cmbConstraintColumn, 0);
59      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
60      this.ResumeLayout(false);
61      this.PerformLayout();
62
63    }
64
65    #endregion
66
67    private System.Windows.Forms.TextBox txtConstraintData;
68    private System.Windows.Forms.ErrorProvider errorProvider;
69  }
70}
Note: See TracBrowser for help on using the repository browser.