Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DebugEngine/ExecutionStackView.Designer.cs @ 4945

Last change on this file since 4945 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.0 KB
Line 
1namespace HeuristicLab.DebugEngine {
2  partial class ExecutionStackView {
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.treeView = new System.Windows.Forms.TreeView();
28      this.groupBox = new System.Windows.Forms.GroupBox();
29      this.imageList = new System.Windows.Forms.ImageList(this.components);
30      this.groupBox.SuspendLayout();
31      this.SuspendLayout();
32      //
33      // treeView
34      //
35      this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
36      this.treeView.ImageIndex = 0;
37      this.treeView.ImageList = this.imageList;
38      this.treeView.Location = new System.Drawing.Point(3, 16);
39      this.treeView.Name = "treeView";
40      this.treeView.SelectedImageIndex = 0;
41      this.treeView.ShowNodeToolTips = true;
42      this.treeView.Size = new System.Drawing.Size(303, 261);
43      this.treeView.TabIndex = 0;
44      this.treeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView_NodeMouseDoubleClick);
45      //
46      // groupBox
47      //
48      this.groupBox.Controls.Add(this.treeView);
49      this.groupBox.Dock = System.Windows.Forms.DockStyle.Fill;
50      this.groupBox.Location = new System.Drawing.Point(0, 0);
51      this.groupBox.Name = "groupBox";
52      this.groupBox.Size = new System.Drawing.Size(309, 280);
53      this.groupBox.TabIndex = 1;
54      this.groupBox.TabStop = false;
55      this.groupBox.Text = "Execution Stack";
56      //
57      // imageList
58      //
59      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
60      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
61      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
62      //
63      // ExecutionStackView
64      //
65      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
66      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
67      this.Controls.Add(this.groupBox);
68      this.Name = "ExecutionStackView";
69      this.Size = new System.Drawing.Size(309, 280);
70      this.groupBox.ResumeLayout(false);
71      this.ResumeLayout(false);
72
73    }
74
75    #endregion
76
77    private System.Windows.Forms.TreeView treeView;
78    private System.Windows.Forms.GroupBox groupBox;
79    private System.Windows.Forms.ImageList imageList;
80
81  }
82}
Note: See TracBrowser for help on using the repository browser.