Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/06/18 18:15:29 (6 years ago)
Author:
jkarder
Message:

#2839:

Location:
branches/2839_HiveProjectManagement
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/2839_HiveProjectManagement

  • branches/2839_HiveProjectManagement/HeuristicLab.Algorithms.DataAnalysis.Views

  • branches/2839_HiveProjectManagement/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/GradientBoostedTreesModelView.Designer.cs

    r15106 r16057  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    4545    /// </summary>
    4646    private void InitializeComponent() {
     47      this.groupBoxVisualisation = new System.Windows.Forms.GroupBox();
    4748      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    48       this.listBox = new System.Windows.Forms.ListBox();
     49      this.listView = new System.Windows.Forms.ListView();
     50      this.columnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     51      this.groupBoxVisualisation.SuspendLayout();
    4952      this.SuspendLayout();
     53      //
     54      // groupBoxVisualisation
     55      //
     56      this.groupBoxVisualisation.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     57            | System.Windows.Forms.AnchorStyles.Left)
     58            | System.Windows.Forms.AnchorStyles.Right)));
     59      this.groupBoxVisualisation.Controls.Add(this.viewHost);
     60      this.groupBoxVisualisation.Location = new System.Drawing.Point(169, 3);
     61      this.groupBoxVisualisation.Name = "groupBoxVisualisation";
     62      this.groupBoxVisualisation.Size = new System.Drawing.Size(177, 277);
     63      this.groupBoxVisualisation.TabIndex = 2;
     64      this.groupBoxVisualisation.TabStop = false;
     65      this.groupBoxVisualisation.Text = "Representation";
    5066      //
    5167      // viewHost
    5268      //
    53       this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    54             | System.Windows.Forms.AnchorStyles.Left)
    55             | System.Windows.Forms.AnchorStyles.Right)));
    5669      this.viewHost.Caption = "View";
    5770      this.viewHost.Content = null;
     71      this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
    5872      this.viewHost.Enabled = false;
    59       this.viewHost.Location = new System.Drawing.Point(126, 3);
     73      this.viewHost.Location = new System.Drawing.Point(3, 16);
    6074      this.viewHost.Name = "viewHost";
    6175      this.viewHost.ReadOnly = false;
    62       this.viewHost.Size = new System.Drawing.Size(220, 277);
     76      this.viewHost.Size = new System.Drawing.Size(171, 258);
    6377      this.viewHost.TabIndex = 0;
    6478      this.viewHost.ViewsLabelVisible = true;
    6579      this.viewHost.ViewType = null;
    6680      //
    67       // listBox
     81      // listView
    6882      //
    69       this.listBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     83      this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    7084            | System.Windows.Forms.AnchorStyles.Left)));
    71       this.listBox.Location = new System.Drawing.Point(3, 3);
    72       this.listBox.Name = "listBox";
    73       this.listBox.Size = new System.Drawing.Size(117, 277);
    74       this.listBox.TabIndex = 1;
    75       this.listBox.SelectedIndexChanged += new System.EventHandler(this.listBox_SelectedIndexChanged);
    76       this.listBox.DoubleClick += new System.EventHandler(this.listBox_DoubleClick);
     85      this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     86            this.columnHeader});
     87      this.listView.FullRowSelect = true;
     88      this.listView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
     89      this.listView.LabelWrap = false;
     90      this.listView.Location = new System.Drawing.Point(3, 9);
     91      this.listView.MultiSelect = false;
     92      this.listView.Name = "listView";
     93      this.listView.ShowGroups = false;
     94      this.listView.Size = new System.Drawing.Size(160, 271);
     95      this.listView.TabIndex = 1;
     96      this.listView.UseCompatibleStateImageBehavior = false;
     97      this.listView.View = System.Windows.Forms.View.Details;
     98      this.listView.SelectedIndexChanged += new System.EventHandler(this.listView_SelectedIndexChanged);
     99      this.listView.DoubleClick += new System.EventHandler(this.listView_DoubleClick);
     100      //
     101      // columnHeader
     102      //
     103      this.columnHeader.Width = 130;
    77104      //
    78105      // GradientBoostedTreesModelView
     
    80107      this.AllowDrop = true;
    81108      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
    82       this.Controls.Add(this.viewHost);
    83       this.Controls.Add(this.listBox);
     109      this.Controls.Add(this.groupBoxVisualisation);
     110      this.Controls.Add(this.listView);
    84111      this.Name = "GradientBoostedTreesModelView";
    85112      this.Size = new System.Drawing.Size(349, 289);
     113      this.groupBoxVisualisation.ResumeLayout(false);
    86114      this.ResumeLayout(false);
    87115
     
    91119
    92120    private MainForm.WindowsForms.ViewHost viewHost;
    93     private System.Windows.Forms.ListBox listBox;
    94 
    95 
    96 
    97 
     121    private System.Windows.Forms.ListView listView;
     122    private System.Windows.Forms.GroupBox groupBoxVisualisation;
     123    private System.Windows.Forms.ColumnHeader columnHeader;
    98124  }
    99125}
Note: See TracChangeset for help on using the changeset viewer.