Exemplo n.º 1
0
        public void OnDebugIdleOutput(string arg)
        {
            // AppendText() is much faster than data binding.
            DebugIdleTextBox.AppendText(arg);

            DebugIdleTextBox.CaretIndex = DebugIdleTextBox.Text.Length;
            DebugIdleTextBox.ScrollToEnd();
        }
Exemplo n.º 2
0
 public void OnDebugIdleClear()
 {
     DebugIdleTextBox.Clear();
 }