Changeset 16311 for branches/2845_EnhancedProgress/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/GradientBoostedTreesModelView.Designer.cs
- Timestamp:
- 11/20/18 15:26:57 (6 years ago)
- Location:
- branches/2845_EnhancedProgress
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2845_EnhancedProgress
- Property svn:mergeinfo changed
-
branches/2845_EnhancedProgress/HeuristicLab.Algorithms.DataAnalysis.Views
- Property svn:mergeinfo changed
-
branches/2845_EnhancedProgress/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/GradientBoostedTreesModelView.Designer.cs
r16308 r16311 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 6Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 45 45 /// </summary> 46 46 private void InitializeComponent() { 47 this.groupBoxVisualisation = new System.Windows.Forms.GroupBox(); 47 48 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(); 49 52 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"; 50 66 // 51 67 // viewHost 52 68 // 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)));56 69 this.viewHost.Caption = "View"; 57 70 this.viewHost.Content = null; 71 this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill; 58 72 this.viewHost.Enabled = false; 59 this.viewHost.Location = new System.Drawing.Point( 126, 3);73 this.viewHost.Location = new System.Drawing.Point(3, 16); 60 74 this.viewHost.Name = "viewHost"; 61 75 this.viewHost.ReadOnly = false; 62 this.viewHost.Size = new System.Drawing.Size( 220, 277);76 this.viewHost.Size = new System.Drawing.Size(171, 258); 63 77 this.viewHost.TabIndex = 0; 64 78 this.viewHost.ViewsLabelVisible = true; 65 79 this.viewHost.ViewType = null; 66 80 // 67 // list Box81 // listView 68 82 // 69 this.list Box.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) 70 84 | 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; 77 104 // 78 105 // GradientBoostedTreesModelView … … 80 107 this.AllowDrop = true; 81 108 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; 82 this.Controls.Add(this. viewHost);83 this.Controls.Add(this.list Box);109 this.Controls.Add(this.groupBoxVisualisation); 110 this.Controls.Add(this.listView); 84 111 this.Name = "GradientBoostedTreesModelView"; 85 112 this.Size = new System.Drawing.Size(349, 289); 113 this.groupBoxVisualisation.ResumeLayout(false); 86 114 this.ResumeLayout(false); 87 115 … … 91 119 92 120 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; 98 124 } 99 125 }
Note: See TracChangeset
for help on using the changeset viewer.