Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 4871 was 4871, checked in by epitzer, 13 years ago

Refactoring and modularization of DebugEngine (#47)

File size: 2.4 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.treeView = new System.Windows.Forms.TreeView();
27      this.groupBox = new System.Windows.Forms.GroupBox();
28      this.groupBox.SuspendLayout();
29      this.SuspendLayout();
30      //
31      // treeView
32      //
33      this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
34      this.treeView.Location = new System.Drawing.Point(3, 16);
35      this.treeView.Name = "treeView";
36      this.treeView.Size = new System.Drawing.Size(303, 261);
37      this.treeView.TabIndex = 0;
38      this.treeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView_NodeMouseDoubleClick);
39      //
40      // groupBox
41      //
42      this.groupBox.Controls.Add(this.treeView);
43      this.groupBox.Dock = System.Windows.Forms.DockStyle.Fill;
44      this.groupBox.Location = new System.Drawing.Point(0, 0);
45      this.groupBox.Name = "groupBox";
46      this.groupBox.Size = new System.Drawing.Size(309, 280);
47      this.groupBox.TabIndex = 1;
48      this.groupBox.TabStop = false;
49      this.groupBox.Text = "Execution Stack";
50      //
51      // ExecutionStackView
52      //
53      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
54      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
55      this.Controls.Add(this.groupBox);
56      this.Name = "ExecutionStackView";
57      this.Size = new System.Drawing.Size(309, 280);
58      this.groupBox.ResumeLayout(false);
59      this.ResumeLayout(false);
60
61    }
62
63    #endregion
64
65    private System.Windows.Forms.TreeView treeView;
66    private System.Windows.Forms.GroupBox groupBox;
67  }
68}
Note: See TracBrowser for help on using the repository browser.