[4871] | 1 | namespace 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() {
|
---|
[4909] | 26 | this.components = new System.ComponentModel.Container();
|
---|
[4871] | 27 | this.treeView = new System.Windows.Forms.TreeView();
|
---|
| 28 | this.groupBox = new System.Windows.Forms.GroupBox();
|
---|
[4909] | 29 | this.imageList = new System.Windows.Forms.ImageList(this.components);
|
---|
[4871] | 30 | this.groupBox.SuspendLayout();
|
---|
| 31 | this.SuspendLayout();
|
---|
| 32 | //
|
---|
| 33 | // treeView
|
---|
| 34 | //
|
---|
| 35 | this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
[4909] | 36 | this.treeView.ImageIndex = 0;
|
---|
| 37 | this.treeView.ImageList = this.imageList;
|
---|
[4871] | 38 | this.treeView.Location = new System.Drawing.Point(3, 16);
|
---|
| 39 | this.treeView.Name = "treeView";
|
---|
[4909] | 40 | this.treeView.SelectedImageIndex = 0;
|
---|
| 41 | this.treeView.ShowNodeToolTips = true;
|
---|
[4871] | 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 | //
|
---|
[4909] | 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 | //
|
---|
[4871] | 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;
|
---|
[4909] | 79 | private System.Windows.Forms.ImageList imageList;
|
---|
[4904] | 80 |
|
---|
[4871] | 81 | }
|
---|
| 82 | }
|
---|