Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionConstraintView.Designer.cs @ 3614

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

implemented first version of RunConstraints (ticket #970)

File size: 5.7 KB
Line 
1namespace HeuristicLab.Optimization.Views {
2  partial class RunCollectionConstraintView {
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.lblConstrainedMember = new System.Windows.Forms.Label();
27      this.lblComparisonOperation = new System.Windows.Forms.Label();
28      this.lblCompareValue = new System.Windows.Forms.Label();
29      this.cmbConstraintOperation = new System.Windows.Forms.ComboBox();
30      this.chbActive = new System.Windows.Forms.CheckBox();
31      this.cmbConstraintColumn = new System.Windows.Forms.ComboBox();
32      this.SuspendLayout();
33      //
34      // lblConstrainedMember
35      //
36      this.lblConstrainedMember.AutoSize = true;
37      this.lblConstrainedMember.Location = new System.Drawing.Point(3, 6);
38      this.lblConstrainedMember.Name = "lblConstrainedMember";
39      this.lblConstrainedMember.Size = new System.Drawing.Size(107, 13);
40      this.lblConstrainedMember.TabIndex = 0;
41      this.lblConstrainedMember.Text = "Constrained Member:";
42      //
43      // lblComparisonOperation
44      //
45      this.lblComparisonOperation.AutoSize = true;
46      this.lblComparisonOperation.Location = new System.Drawing.Point(3, 32);
47      this.lblComparisonOperation.Name = "lblComparisonOperation";
48      this.lblComparisonOperation.Size = new System.Drawing.Size(106, 13);
49      this.lblComparisonOperation.TabIndex = 1;
50      this.lblComparisonOperation.Text = "Constraint Operation:";
51      //
52      // lblCompareValue
53      //
54      this.lblCompareValue.AutoSize = true;
55      this.lblCompareValue.Location = new System.Drawing.Point(3, 59);
56      this.lblCompareValue.Name = "lblCompareValue";
57      this.lblCompareValue.Size = new System.Drawing.Size(83, 13);
58      this.lblCompareValue.TabIndex = 2;
59      this.lblCompareValue.Text = "Constraint Data:";
60      //
61      // cmbConstraintOperation
62      //
63      this.cmbConstraintOperation.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
64                  | System.Windows.Forms.AnchorStyles.Right)));
65      this.cmbConstraintOperation.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
66      this.cmbConstraintOperation.FormattingEnabled = true;
67      this.cmbConstraintOperation.Location = new System.Drawing.Point(127, 29);
68      this.cmbConstraintOperation.Name = "cmbConstraintOperation";
69      this.cmbConstraintOperation.Size = new System.Drawing.Size(246, 21);
70      this.cmbConstraintOperation.TabIndex = 4;
71      this.cmbConstraintOperation.SelectedIndexChanged += new System.EventHandler(this.cmbComparisonOperation_SelectedIndexChanged);
72      //
73      // chbActive
74      //
75      this.chbActive.AutoSize = true;
76      this.chbActive.Location = new System.Drawing.Point(127, 82);
77      this.chbActive.Name = "chbActive";
78      this.chbActive.Size = new System.Drawing.Size(56, 17);
79      this.chbActive.TabIndex = 7;
80      this.chbActive.Text = "Active";
81      this.chbActive.UseVisualStyleBackColor = true;
82      this.chbActive.CheckedChanged += new System.EventHandler(this.chbActive_CheckedChanged);
83      //
84      // cmbConstraintColumn
85      //
86      this.cmbConstraintColumn.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
87                  | System.Windows.Forms.AnchorStyles.Right)));
88      this.cmbConstraintColumn.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
89      this.cmbConstraintColumn.FormattingEnabled = true;
90      this.cmbConstraintColumn.Location = new System.Drawing.Point(127, 3);
91      this.cmbConstraintColumn.Name = "cmbConstraintColumn";
92      this.cmbConstraintColumn.Size = new System.Drawing.Size(246, 21);
93      this.cmbConstraintColumn.TabIndex = 8;
94      this.cmbConstraintColumn.SelectedIndexChanged += new System.EventHandler(this.cmbConstraintColumn_SelectedIndexChanged);
95      //
96      // RunCollectionConstraintView
97      //
98      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
99      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
100      this.Controls.Add(this.cmbConstraintColumn);
101      this.Controls.Add(this.chbActive);
102      this.Controls.Add(this.cmbConstraintOperation);
103      this.Controls.Add(this.lblCompareValue);
104      this.Controls.Add(this.lblComparisonOperation);
105      this.Controls.Add(this.lblConstrainedMember);
106      this.Name = "RunCollectionConstraintView";
107      this.Size = new System.Drawing.Size(376, 102);
108      this.ResumeLayout(false);
109      this.PerformLayout();
110
111    }
112
113    #endregion
114
115    private System.Windows.Forms.Label lblConstrainedMember;
116    private System.Windows.Forms.Label lblComparisonOperation;
117    private System.Windows.Forms.Label lblCompareValue;
118    private System.Windows.Forms.CheckBox chbActive;
119    protected System.Windows.Forms.ComboBox cmbConstraintColumn;
120    protected System.Windows.Forms.ComboBox cmbConstraintOperation;
121  }
122}
Note: See TracBrowser for help on using the repository browser.