2015-08-09 14:47:27 -04:00
namespace Mesen.GUI.Debugger.Controls
{
partial class ctrlCallstack
{
/// <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 ( )
{
2016-11-26 14:15:50 -05:00
this . lstCallstack = new Mesen . GUI . Controls . DoubleBufferedListView ( ) ;
2016-06-05 10:53:41 -04:00
this . colFunctionAddress = ( ( System . Windows . Forms . ColumnHeader ) ( new System . Windows . Forms . ColumnHeader ( ) ) ) ;
this . colStackAddr = ( ( System . Windows . Forms . ColumnHeader ) ( new System . Windows . Forms . ColumnHeader ( ) ) ) ;
this . colRomOffset = ( ( System . Windows . Forms . ColumnHeader ) ( new System . Windows . Forms . ColumnHeader ( ) ) ) ;
2015-08-09 14:47:27 -04:00
this . SuspendLayout ( ) ;
//
// lstCallstack
//
this . lstCallstack . Columns . AddRange ( new System . Windows . Forms . ColumnHeader [ ] {
2016-06-05 10:53:41 -04:00
this . colFunctionAddress ,
this . colStackAddr ,
this . colRomOffset } ) ;
2015-08-09 14:47:27 -04:00
this . lstCallstack . Dock = System . Windows . Forms . DockStyle . Fill ;
2016-06-05 10:53:41 -04:00
this . lstCallstack . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 8.25F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 0 ) ) ) ;
this . lstCallstack . FullRowSelect = true ;
this . lstCallstack . GridLines = true ;
this . lstCallstack . HeaderStyle = System . Windows . Forms . ColumnHeaderStyle . Nonclickable ;
2016-11-23 23:03:29 -05:00
this . lstCallstack . HideSelection = false ;
2015-08-09 14:47:27 -04:00
this . lstCallstack . Location = new System . Drawing . Point ( 0 , 0 ) ;
this . lstCallstack . MultiSelect = false ;
this . lstCallstack . Name = "lstCallstack" ;
2016-11-22 00:14:49 -05:00
this . lstCallstack . Size = new System . Drawing . Size ( 330 , 125 ) ;
2015-08-09 14:47:27 -04:00
this . lstCallstack . TabIndex = 1 ;
this . lstCallstack . UseCompatibleStateImageBehavior = false ;
this . lstCallstack . View = System . Windows . Forms . View . Details ;
this . lstCallstack . DoubleClick + = new System . EventHandler ( this . lstCallstack_DoubleClick ) ;
//
2016-06-05 10:53:41 -04:00
// colFunctionAddress
2015-08-09 14:47:27 -04:00
//
2016-12-04 15:09:09 -05:00
this . colFunctionAddress . Text = "Function (Entry Addr)" ;
2016-11-22 00:14:49 -05:00
this . colFunctionAddress . Width = 164 ;
2016-06-05 10:53:41 -04:00
//
// colStackAddr
//
this . colStackAddr . Text = "PC Addr" ;
2016-11-22 00:14:49 -05:00
this . colStackAddr . Width = 67 ;
2016-06-05 10:53:41 -04:00
//
// colRomOffset
//
2016-12-04 09:16:09 -05:00
this . colRomOffset . Text = "ROM Addr" ;
2016-11-22 00:14:49 -05:00
this . colRomOffset . Width = 71 ;
2015-08-09 14:47:27 -04:00
//
// ctrlCallstack
//
this . AutoScaleDimensions = new System . Drawing . SizeF ( 6F , 13F ) ;
this . AutoScaleMode = System . Windows . Forms . AutoScaleMode . Font ;
this . Controls . Add ( this . lstCallstack ) ;
this . Name = "ctrlCallstack" ;
2016-11-22 00:14:49 -05:00
this . Size = new System . Drawing . Size ( 330 , 125 ) ;
2015-08-09 14:47:27 -04:00
this . ResumeLayout ( false ) ;
}
#endregion
2016-11-26 14:15:50 -05:00
private Mesen . GUI . Controls . DoubleBufferedListView lstCallstack ;
2016-06-05 10:53:41 -04:00
private System . Windows . Forms . ColumnHeader colFunctionAddress ;
private System . Windows . Forms . ColumnHeader colStackAddr ;
private System . Windows . Forms . ColumnHeader colRomOffset ;
2015-08-09 14:47:27 -04:00
}
}