Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.DebugEngine/3.3/OperatorTraceView.Designer.cs @ 5116

Last change on this file since 5116 was 5116, checked in by epitzer, 13 years ago
  • fixed truncation of bold text in TreeView
  • changed "show actual value" initial caps
  • select node on right click
  • fixed margins
  • include actual name for parameters
  • remove unnecessary labels

(#47)

File size: 4.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.DebugEngine {
23  partial class OperatorTraceView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.components = new System.ComponentModel.Container();
48      this.operatorTraceGroupBox = new System.Windows.Forms.GroupBox();
49      this.listView = new System.Windows.Forms.ListView();
50      this.listViewColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
51      this.imageList = new System.Windows.Forms.ImageList(this.components);
52      this.operatorTraceGroupBox.SuspendLayout();
53      this.SuspendLayout();
54      //
55      // operatorTraceGroupBox
56      //
57      this.operatorTraceGroupBox.Controls.Add(this.listView);
58      this.operatorTraceGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
59      this.operatorTraceGroupBox.Location = new System.Drawing.Point(0, 0);
60      this.operatorTraceGroupBox.Name = "operatorTraceGroupBox";
61      this.operatorTraceGroupBox.Size = new System.Drawing.Size(152, 489);
62      this.operatorTraceGroupBox.TabIndex = 0;
63      this.operatorTraceGroupBox.TabStop = false;
64      this.operatorTraceGroupBox.Text = "Operator Trace";
65      //
66      // listView
67      //
68      this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
69            | System.Windows.Forms.AnchorStyles.Left)
70            | System.Windows.Forms.AnchorStyles.Right)));
71      this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
72            this.listViewColumnHeader});
73      this.listView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
74      this.listView.HideSelection = false;
75      this.listView.Location = new System.Drawing.Point(6, 19);
76      this.listView.Name = "listView";
77      this.listView.ShowItemToolTips = true;
78      this.listView.Size = new System.Drawing.Size(140, 464);
79      this.listView.SmallImageList = this.imageList;
80      this.listView.TabIndex = 0;
81      this.listView.UseCompatibleStateImageBehavior = false;
82      this.listView.View = System.Windows.Forms.View.Details;
83      this.listView.ItemActivate += new System.EventHandler(this.listView_ItemActivate);
84      //
85      // imageList
86      //
87      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
88      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
89      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
90      //
91      // OperatorTraceView
92      //
93      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
94      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
95      this.Controls.Add(this.operatorTraceGroupBox);
96      this.Name = "OperatorTraceView";
97      this.Size = new System.Drawing.Size(152, 489);
98      this.operatorTraceGroupBox.ResumeLayout(false);
99      this.ResumeLayout(false);
100
101    }
102
103    #endregion
104
105    private System.Windows.Forms.GroupBox operatorTraceGroupBox;
106    private System.Windows.Forms.ListView listView;
107    private System.Windows.Forms.ImageList imageList;
108    private System.Windows.Forms.ColumnHeader listViewColumnHeader;
109  }
110}
Note: See TracBrowser for help on using the repository browser.