Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DebugEngine/OperatorTraceView.Designer.cs @ 4920

Last change on this file since 4920 was 4909, checked in by epitzer, 14 years ago

Several GUI improvements (#47)

  • add icons and tool tips
  • add support for suspending the operator trace view
  • faster skipping of stack-only operations
  • remove log view and execution time view
File size: 3.6 KB
Line 
1namespace HeuristicLab.DebugEngine {
2  partial class OperatorTraceView {
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.operatorTraceGroupBox = new System.Windows.Forms.GroupBox();
28      this.listView = new System.Windows.Forms.ListView();
29      this.listViewColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
30      this.imageList = new System.Windows.Forms.ImageList(this.components);
31      this.operatorTraceGroupBox.SuspendLayout();
32      this.SuspendLayout();
33      //
34      // operatorTraceGroupBox
35      //
36      this.operatorTraceGroupBox.Controls.Add(this.listView);
37      this.operatorTraceGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
38      this.operatorTraceGroupBox.Location = new System.Drawing.Point(0, 0);
39      this.operatorTraceGroupBox.Name = "operatorTraceGroupBox";
40      this.operatorTraceGroupBox.Size = new System.Drawing.Size(152, 489);
41      this.operatorTraceGroupBox.TabIndex = 0;
42      this.operatorTraceGroupBox.TabStop = false;
43      this.operatorTraceGroupBox.Text = "Operator Trace";
44      //
45      // listView
46      //
47      this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
48            this.listViewColumnHeader});
49      this.listView.Dock = System.Windows.Forms.DockStyle.Fill;
50      this.listView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
51      this.listView.HideSelection = false;
52      this.listView.Location = new System.Drawing.Point(3, 16);
53      this.listView.Name = "listView";
54      this.listView.ShowItemToolTips = true;
55      this.listView.Size = new System.Drawing.Size(146, 470);
56      this.listView.SmallImageList = this.imageList;
57      this.listView.TabIndex = 0;
58      this.listView.UseCompatibleStateImageBehavior = false;
59      this.listView.View = System.Windows.Forms.View.Details;
60      this.listView.ItemActivate += new System.EventHandler(this.listView_ItemActivate);
61      //
62      // imageList
63      //
64      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
65      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
66      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
67      //
68      // OperatorTraceView
69      //
70      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
71      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
72      this.Controls.Add(this.operatorTraceGroupBox);
73      this.Name = "OperatorTraceView";
74      this.Size = new System.Drawing.Size(152, 489);
75      this.operatorTraceGroupBox.ResumeLayout(false);
76      this.ResumeLayout(false);
77
78    }
79
80    #endregion
81
82    private System.Windows.Forms.GroupBox operatorTraceGroupBox;
83    private System.Windows.Forms.ListView listView;
84    private System.Windows.Forms.ImageList imageList;
85    private System.Windows.Forms.ColumnHeader listViewColumnHeader;
86  }
87}
Note: See TracBrowser for help on using the repository browser.