|
|
|
@ -64,7 +64,8 @@ namespace ICSharpCode.SharpDevelop.Gui.Pads
@@ -64,7 +64,8 @@ namespace ICSharpCode.SharpDevelop.Gui.Pads
|
|
|
|
|
name.Width = 250; |
|
|
|
|
val.Width = 300; |
|
|
|
|
type.Width = 250; |
|
|
|
|
|
|
|
|
|
localVarList.Visible = false; |
|
|
|
|
localVarList.SizeChanged += new EventHandler(localVarList_SizeChanged); |
|
|
|
|
localVarList.BeforeExpand += new TreeListViewCancelEventHandler(localVarList_BeforeExpand); |
|
|
|
|
|
|
|
|
|
debuggerCore.DebuggingPaused += new DebuggingPausedEventHandler(debuggerService_OnDebuggingPaused); |
|
|
|
@ -72,6 +73,12 @@ namespace ICSharpCode.SharpDevelop.Gui.Pads
@@ -72,6 +73,12 @@ namespace ICSharpCode.SharpDevelop.Gui.Pads
|
|
|
|
|
RedrawContent(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// This is a walkarond for a visual issue
|
|
|
|
|
void localVarList_SizeChanged(object sender, EventArgs e) |
|
|
|
|
{ |
|
|
|
|
localVarList.Visible = true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public override void RedrawContent() |
|
|
|
|
{ |
|
|
|
|
name.Text = "Name"; |
|
|
|
|