Changeset 436
- Timestamp:
- 08/04/08 08:13:32 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Constraints
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Constraints/AllSubOperatorsTypeConstraintView.Designer.cs
r2 r436 47 47 this.groupBox = new System.Windows.Forms.GroupBox(); 48 48 this.listView = new System.Windows.Forms.ListView(); 49 this.panel = new System.Windows.Forms.Panel();50 49 this.removeButton = new System.Windows.Forms.Button(); 51 50 this.groupBox.SuspendLayout(); 52 this.panel.SuspendLayout();53 51 this.SuspendLayout(); 54 52 // 55 53 // groupBox 56 54 // 55 this.groupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 56 | System.Windows.Forms.AnchorStyles.Left) 57 | System.Windows.Forms.AnchorStyles.Right))); 57 58 this.groupBox.Controls.Add(this.listView); 58 this.groupBox.Dock = System.Windows.Forms.DockStyle.Top;59 59 this.groupBox.Location = new System.Drawing.Point(0, 0); 60 60 this.groupBox.Name = "groupBox"; 61 this.groupBox.Size = new System.Drawing.Size(463, 285);61 this.groupBox.Size = new System.Drawing.Size(463, 305); 62 62 this.groupBox.TabIndex = 0; 63 63 this.groupBox.TabStop = false; … … 70 70 this.listView.Location = new System.Drawing.Point(3, 16); 71 71 this.listView.Name = "listView"; 72 this.listView.Size = new System.Drawing.Size(457, 2 66);72 this.listView.Size = new System.Drawing.Size(457, 286); 73 73 this.listView.TabIndex = 1; 74 74 this.listView.UseCompatibleStateImageBehavior = false; … … 80 80 this.listView.DragOver += new System.Windows.Forms.DragEventHandler(this.listView_DragOver); 81 81 // 82 // panel83 //84 this.panel.Controls.Add(this.removeButton);85 this.panel.Dock = System.Windows.Forms.DockStyle.Bottom;86 this.panel.Location = new System.Drawing.Point(0, 291);87 this.panel.Name = "panel";88 this.panel.Size = new System.Drawing.Size(463, 46);89 this.panel.TabIndex = 1;90 //91 82 // removeButton 92 83 // 93 this.removeButton.Location = new System.Drawing.Point(3, 3); 84 this.removeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 85 this.removeButton.Location = new System.Drawing.Point(3, 311); 94 86 this.removeButton.Name = "removeButton"; 95 87 this.removeButton.Size = new System.Drawing.Size(75, 23); … … 103 95 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 104 96 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 105 this.Controls.Add(this. panel);97 this.Controls.Add(this.removeButton); 106 98 this.Controls.Add(this.groupBox); 107 99 this.Name = "AllSubOperatorsTypeConstraintView"; 108 100 this.Size = new System.Drawing.Size(463, 337); 109 101 this.groupBox.ResumeLayout(false); 110 this.panel.ResumeLayout(false);111 102 this.ResumeLayout(false); 112 103 … … 116 107 117 108 private System.Windows.Forms.GroupBox groupBox; 118 private System.Windows.Forms.Panel panel;119 109 private System.Windows.Forms.Button removeButton; 120 110 private System.Windows.Forms.ListView listView; -
trunk/sources/HeuristicLab.Constraints/AllSubOperatorsTypeConstraintView.cs
r430 r436 31 31 namespace HeuristicLab.Constraints { 32 32 public partial class AllSubOperatorsTypeConstraintView : ViewBase { 33 private SubOperatorTypeConstraint constraint ;33 private SubOperatorTypeConstraint constraint = new SubOperatorTypeConstraint(); 34 34 35 35 public SubOperatorTypeConstraint Constraint { … … 46 46 47 47 public AllSubOperatorsTypeConstraintView(SubOperatorTypeConstraint constraint) { 48 this.constraint = constraint; 48 49 InitializeComponent(); 49 this.constraint = constraint;50 UpdateAllowedOperatorsList();51 50 } 52 51 -
trunk/sources/HeuristicLab.Constraints/SubOperatorsTypeConstraintView.Designer.cs
r2 r436 70 70 // allSubOperatorsTypeConstraintView 71 71 // 72 this.allSubOperatorsTypeConstraintView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 73 | System.Windows.Forms.AnchorStyles.Left) 74 | System.Windows.Forms.AnchorStyles.Right))); 72 75 this.allSubOperatorsTypeConstraintView.Caption = "View"; 73 76 this.allSubOperatorsTypeConstraintView.Location = new System.Drawing.Point(0, 35);
Note: See TracChangeset
for help on using the changeset viewer.