Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.DebugEngine.Views/3.3/OperatorTraceView.Designer.cs @ 17226

Last change on this file since 17226 was 17226, checked in by mkommend, 5 years ago

#2521: Merged trunk changes into problem refactoring branch.

File size: 5.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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.isEnabledCheckbox = new System.Windows.Forms.CheckBox();
53      this.operatorTraceGroupBox.SuspendLayout();
54      this.SuspendLayout();
55      //
56      // operatorTraceGroupBox
57      //
58      this.operatorTraceGroupBox.Controls.Add(this.isEnabledCheckbox);
59      this.operatorTraceGroupBox.Controls.Add(this.listView);
60      this.operatorTraceGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
61      this.operatorTraceGroupBox.Location = new System.Drawing.Point(0, 0);
62      this.operatorTraceGroupBox.Name = "operatorTraceGroupBox";
63      this.operatorTraceGroupBox.Size = new System.Drawing.Size(152, 489);
64      this.operatorTraceGroupBox.TabIndex = 0;
65      this.operatorTraceGroupBox.TabStop = false;
66      this.operatorTraceGroupBox.Text = "Operator Trace";
67      //
68      // listView
69      //
70      this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
71            | System.Windows.Forms.AnchorStyles.Left)
72            | System.Windows.Forms.AnchorStyles.Right)));
73      this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
74            this.listViewColumnHeader});
75      this.listView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
76      this.listView.HideSelection = false;
77      this.listView.Location = new System.Drawing.Point(6, 43);
78      this.listView.Name = "listView";
79      this.listView.ShowItemToolTips = true;
80      this.listView.Size = new System.Drawing.Size(140, 440);
81      this.listView.SmallImageList = this.imageList;
82      this.listView.TabIndex = 0;
83      this.listView.UseCompatibleStateImageBehavior = false;
84      this.listView.View = System.Windows.Forms.View.Details;
85      this.listView.ItemActivate += new System.EventHandler(this.listView_ItemActivate);
86      //
87      // imageList
88      //
89      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
90      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
91      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
92      //
93      // isEnabledCheckbox
94      //
95      this.isEnabledCheckbox.AutoSize = true;
96      this.isEnabledCheckbox.Location = new System.Drawing.Point(7, 20);
97      this.isEnabledCheckbox.Name = "isEnabledCheckbox";
98      this.isEnabledCheckbox.Size = new System.Drawing.Size(65, 17);
99      this.isEnabledCheckbox.TabIndex = 1;
100      this.isEnabledCheckbox.Text = "Enabled";
101      this.isEnabledCheckbox.UseVisualStyleBackColor = true;
102      this.isEnabledCheckbox.CheckedChanged += new System.EventHandler(this.isEnabledCheckbox_CheckedChanged);
103      //
104      // OperatorTraceView
105      //
106      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
107      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
108      this.Controls.Add(this.operatorTraceGroupBox);
109      this.Name = "OperatorTraceView";
110      this.Size = new System.Drawing.Size(152, 489);
111      this.operatorTraceGroupBox.ResumeLayout(false);
112      this.operatorTraceGroupBox.PerformLayout();
113      this.ResumeLayout(false);
114
115    }
116
117    #endregion
118
119    private System.Windows.Forms.GroupBox operatorTraceGroupBox;
120    private System.Windows.Forms.ListView listView;
121    private System.Windows.Forms.ImageList imageList;
122    private System.Windows.Forms.ColumnHeader listViewColumnHeader;
123    private System.Windows.Forms.CheckBox isEnabledCheckbox;
124  }
125}
Note: See TracBrowser for help on using the repository browser.