reorganization

This commit is contained in:
Holger Börchers 2020-02-19 22:27:48 +01:00
parent d130364643
commit 153a9c3986
3 changed files with 3 additions and 2 deletions

View File

@ -8,7 +8,7 @@ using System.Text.Json;
using System.Windows; using System.Windows;
using Microsoft.Win32; using Microsoft.Win32;
namespace ModernWpfPlayground namespace ModernWpfPlayground.MvvmStuff
{ {
public abstract class BaseViewModel : INotifyPropertyChanged public abstract class BaseViewModel : INotifyPropertyChanged
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Windows.Input; using System.Windows.Input;
namespace ModernWpfPlayground namespace ModernWpfPlayground.MvvmStuff
{ {
public class RelayCommand : ICommand public class RelayCommand : ICommand
{ {

View File

@ -1,6 +1,7 @@
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows; using System.Windows;
using System.Windows.Input; using System.Windows.Input;
using ModernWpfPlayground.MvvmStuff;
namespace ModernWpfPlayground namespace ModernWpfPlayground
{ {