Property Debugger
Debugger
Gets or sets IScriptDebuggerBase
which threads will be displayed by this user control.
[Browsable(false)]
public IScriptDebuggerBase Debugger { get; set; }
Property Value
Examples
Here is how to use a Debugger in the C# code:
using Alternet.Scripter.Debugger;
using Alternet.Scripter.Debugger.UI;
public partial class Form1 : Form
{
private void Form1_Load(object sender, EventArgs e)
{
var debugger = new ScriptDebugger();
var threadsControl = new Threads();
threadsControl.Dock = System.Windows.Forms.DockStyle.Fill;
threadsControl.Debugger = debugger;
threadsControl.ThreadClick += ThreadsControl_ThreadClick;
}
private void ThreadsControl_ThreadClick(object sender, ThreadClickEventArgs e)
{
if (e.Thread != null)
{
System.Windows.Forms.MessageBox.Show(e.Thread.Title);
}
}
}
Here is how to use a Debugger in the Visual Basic code:
Imports System
Imports Alternet.Scripter.Debugger
Imports Alternet.Scripter.Debugger.UI
Partial Public Class Form1
Inherits Form
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
Dim debugger = New ScriptDebugger()
Dim threadsControl = New Threads()
threadsControl.Dock = Windows.Forms.DockStyle.Fill
threadsControl.Debugger = debugger
AddHandler threadsControl.ThreadClick, AddressOf ThreadsControl_ThreadClick
End Sub
Private Sub ThreadsControl_ThreadClick(ByVal sender As Object, ByVal e As ThreadClickEventArgs)
If e.Thread IsNot Nothing Then
Windows.Forms.MessageBox.Show(e.Thread.Title)
End If
End Sub
End Class