コード例 #1
0
 public void SetBreakPointInformation(BreakPointNotificationResult result)
 {
     FormCotrolHelper.ControlInvike(breakpointStatus, () =>
     {
         breakpointStatus.Text += "Break happend on Thread " + result.ThreadID + "\n" +
             "@ " + Utils.getBPuid(
             result.Module,
             result.Class,
             result.Method) + ";";
         breakpointStatus.Tag = result;
     });
     FormCotrolHelper.ControlInvike(GoButton, () =>
     {
         GoButton.Enabled = true;
         ShowValButton.Enabled = true;
     });
 }
コード例 #2
0
 public Watcher(BreakPointNotificationResult _breakResult, uint _processID)
 {
     m_breakInfo = _breakResult;
     m_ProcessID = _processID;
     InitializeComponent();
 }