Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ParameterConfigurationEncoding/HeuristicLab.Encodings.ParameterConfigurationEncoding.Views/3.3/ParameterConfigurationTreeView.Designer.cs @ 8517

Last change on this file since 8517 was 8517, checked in by jkarder, 12 years ago

#1853:

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