Exemplo n.º 1
0
        void scheduleRedraw()
        {
            var    copiedLine = CopyLine(Line);
            Action action     = () => Dispatcher.InvokeAsync(() => redraw(copiedLine));

            Terminal.AddDeferChangesCallback(this, action);
        }
Exemplo n.º 2
0
        void scheduleRedraw()
        {
            Action action = () => Dispatcher.Invoke(redraw);

            Terminal.AddDeferChangesCallback(this, action);
        }