From 7163f1c8f00d7428f3e00f020a466966143f11f4 Mon Sep 17 00:00:00 2001 From: Timothy Baldridge Date: Mon, 18 Oct 2021 18:11:02 -0600 Subject: [PATCH] Add the new controls/vms --- Wabbajack.App/Screens/LogScreenView.axaml | 37 ++++++++++++++++++++ Wabbajack.App/Screens/LogScreenView.axaml.cs | 8 +++++ Wabbajack.App/Screens/LogScreenViewModel.cs | 9 +++++ 3 files changed, 54 insertions(+) create mode 100644 Wabbajack.App/Screens/LogScreenView.axaml create mode 100644 Wabbajack.App/Screens/LogScreenView.axaml.cs create mode 100644 Wabbajack.App/Screens/LogScreenViewModel.cs diff --git a/Wabbajack.App/Screens/LogScreenView.axaml b/Wabbajack.App/Screens/LogScreenView.axaml new file mode 100644 index 00000000..8e749b88 --- /dev/null +++ b/Wabbajack.App/Screens/LogScreenView.axaml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Wabbajack.App/Screens/LogScreenView.axaml.cs b/Wabbajack.App/Screens/LogScreenView.axaml.cs new file mode 100644 index 00000000..d3ed2ff0 --- /dev/null +++ b/Wabbajack.App/Screens/LogScreenView.axaml.cs @@ -0,0 +1,8 @@ +using Wabbajack.App.Views; + +namespace Wabbajack.App.Screens; + +public partial class LogScreenView : ScreenBase +{ + +} \ No newline at end of file diff --git a/Wabbajack.App/Screens/LogScreenViewModel.cs b/Wabbajack.App/Screens/LogScreenViewModel.cs new file mode 100644 index 00000000..a984975b --- /dev/null +++ b/Wabbajack.App/Screens/LogScreenViewModel.cs @@ -0,0 +1,9 @@ +using ReactiveUI; +using Wabbajack.App.ViewModels; + +namespace Wabbajack.App.Screens; + +public class LogScreenViewModel : ViewModelBase, IActivatableViewModel +{ + +} \ No newline at end of file