Beispiel #1
0
        private async void StopDebug_Execute(object sender, ExecutedRoutedEventArgs e)
        {
            await DXDebugger.Stop();

            // TODO: Stop
            GlobalModel.Instance.IsDebugging = false;
        }
Beispiel #2
0
        private async t.Task OnCompileSuccess(DXCompileResult result)
        {
            switch (result.Option.TargetPlatform)
            {
            case Platform.Window:
                await DXDebugger.RunWinApplication(result.Outputs[0]);

                break;

            case Platform.XForms:
                break;
            }

            DXCommands.StopDebugCommand.Execute(null, null);
        }