Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization.Views/3.3/ParameterConfigurationTreeView.Designer.cs @ 5184

Last change on this file since 5184 was 5144, checked in by cneumuel, 13 years ago

#1215

  • added possibility to create all parameter combinations from a ParameterConfigurationTree and generate an experiment from them
File size: 2.1 KB
Line 
1using HeuristicLab.Core.Views;
2using System.Windows.Forms;
3namespace HeuristicLab.Problems.MetaOptimization.Views {
4  partial class ParameterConfigurationTreeView {
5    /// <summary>
6    /// Required designer variable.
7    /// </summary>
8    private System.ComponentModel.IContainer components = null;
9
10    /// <summary>
11    /// Clean up any resources being used.
12    /// </summary>
13    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14    protected override void Dispose(bool disposing) {
15      if (disposing && (components != null)) {
16        components.Dispose();
17      }
18      base.Dispose(disposing);
19    }
20
21    #region Component Designer generated code
22
23    /// <summary>
24    /// Required method for Designer support - do not modify
25    /// the contents of this method with the code editor.
26    /// </summary>
27    private void InitializeComponent() {
28      this.listView = new ItemCollectionView<IParameterConfiguration>();
29      this.SuspendLayout();
30
31      //
32      // listView
33      //
34      this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
35                  | System.Windows.Forms.AnchorStyles.Left)
36                  | System.Windows.Forms.AnchorStyles.Right)));
37      this.listView.Caption = "ParameterConfigurationList View";
38      this.listView.Content = null;
39      this.listView.Location = new System.Drawing.Point(0, 0);
40      this.listView.Name = "listView";
41      this.listView.ReadOnly = false;
42      this.listView.Size = new System.Drawing.Size(556, 473);
43      this.listView.TabIndex = 1;
44      //
45      // ParameterConfigurationTreeView
46      //
47      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
48      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
49      this.Controls.Add(listView);
50      this.Name = "ParameterConfigurationTreeView";
51      this.Size = new System.Drawing.Size(556, 473);
52      this.ResumeLayout(false);
53
54    }
55
56    #endregion
57
58    private ItemCollectionView<IParameterConfiguration> listView;
59
60  }
61}
Note: See TracBrowser for help on using the repository browser.