[5144] | 1 | using HeuristicLab.Core.Views;
|
---|
| 2 | using System.Windows.Forms;
|
---|
| 3 | namespace 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 | }
|
---|