reactosdbg/RosDBG/BackTrace.Designer.cs
Art Yerkes 6030ecd415 A debugging shell for use with KDBG. Not perfect yet but it can display the
locals and stack trace at the place where reactos is stopped.

svn path=/trunk/tools/reactosdbg/; revision=759
2008-07-31 07:00:10 +00:00

62 lines
2.2 KiB
C#

namespace RosDBG
{
partial class BackTrace
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.StackFrames = new System.Windows.Forms.ListBox();
this.SuspendLayout();
//
// StackFrames
//
this.StackFrames.Dock = System.Windows.Forms.DockStyle.Fill;
this.StackFrames.FormattingEnabled = true;
this.StackFrames.Location = new System.Drawing.Point(0, 0);
this.StackFrames.Name = "StackFrames";
this.StackFrames.Size = new System.Drawing.Size(257, 264);
this.StackFrames.TabIndex = 0;
this.StackFrames.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.StackFrames_MouseDoubleClick);
this.StackFrames.SelectedIndexChanged += new System.EventHandler(this.StackFrames_SelectedIndexChanged);
//
// BackTrace
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.StackFrames);
this.Name = "BackTrace";
this.Size = new System.Drawing.Size(257, 265);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListBox StackFrames;
}
}