Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager/ItemTreeView.designer.cs @ 5675

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

#1233

  • improved treeview for hive jobs
File size: 4.9 KB
Line 
1namespace HeuristicLab.Clients.Hive.Views {
2  partial class ItemTreeView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.components = new System.ComponentModel.Container();
27      this.splitContainer = new System.Windows.Forms.SplitContainer();
28      this.treeView = new System.Windows.Forms.TreeView();
29      this.imageList = new System.Windows.Forms.ImageList(this.components);
30      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
31      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
32      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
33      this.splitContainer.Panel1.SuspendLayout();
34      this.splitContainer.Panel2.SuspendLayout();
35      this.splitContainer.SuspendLayout();
36      this.detailsGroupBox.SuspendLayout();
37      this.SuspendLayout();
38      //
39      // splitContainer
40      //
41      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
42      this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
43      this.splitContainer.Location = new System.Drawing.Point(0, 0);
44      this.splitContainer.Name = "splitContainer";
45      //
46      // splitContainer.Panel1
47      //
48      this.splitContainer.Panel1.Controls.Add(this.treeView);
49      //
50      // splitContainer.Panel2
51      //
52      this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
53      this.splitContainer.Size = new System.Drawing.Size(624, 463);
54      this.splitContainer.SplitterDistance = 200;
55      this.splitContainer.TabIndex = 0;
56      //
57      // treeView
58      //
59      this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
60      this.treeView.ImageIndex = 0;
61      this.treeView.ImageList = this.imageList;
62      this.treeView.Location = new System.Drawing.Point(0, 0);
63      this.treeView.Name = "treeView";
64      this.treeView.SelectedImageIndex = 0;
65      this.treeView.Size = new System.Drawing.Size(200, 463);
66      this.treeView.TabIndex = 0;
67      this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect);
68      //
69      // imageList
70      //
71      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
72      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
73      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
74      //
75      // detailsGroupBox
76      //
77      this.detailsGroupBox.Controls.Add(this.viewHost);
78      this.detailsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
79      this.detailsGroupBox.Location = new System.Drawing.Point(0, 0);
80      this.detailsGroupBox.Name = "detailsGroupBox";
81      this.detailsGroupBox.Size = new System.Drawing.Size(420, 463);
82      this.detailsGroupBox.TabIndex = 1;
83      this.detailsGroupBox.TabStop = false;
84      this.detailsGroupBox.Text = "Details";
85      //
86      // viewHost
87      //
88      this.viewHost.Caption = "View";
89      this.viewHost.Content = null;
90      this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
91      this.viewHost.Enabled = false;
92      this.viewHost.Location = new System.Drawing.Point(3, 16);
93      this.viewHost.Name = "viewHost";
94      this.viewHost.ReadOnly = false;
95      this.viewHost.Size = new System.Drawing.Size(414, 444);
96      this.viewHost.TabIndex = 0;
97      this.viewHost.ViewsLabelVisible = true;
98      this.viewHost.ViewType = null;
99      //
100      // ItemTreeView
101      //
102      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
103      this.Controls.Add(this.splitContainer);
104      this.Name = "ItemTreeView";
105      this.Size = new System.Drawing.Size(624, 463);
106      this.splitContainer.Panel1.ResumeLayout(false);
107      this.splitContainer.Panel2.ResumeLayout(false);
108      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
109      this.splitContainer.ResumeLayout(false);
110      this.detailsGroupBox.ResumeLayout(false);
111      this.ResumeLayout(false);
112
113    }
114
115    #endregion
116
117    private System.Windows.Forms.SplitContainer splitContainer;
118    private System.Windows.Forms.TreeView treeView;
119    private MainForm.WindowsForms.ViewHost viewHost;
120    private System.Windows.Forms.ImageList imageList;
121    private System.Windows.Forms.GroupBox detailsGroupBox;
122  }
123}
Note: See TracBrowser for help on using the repository browser.