diff --git a/Fate.Wpf.Controls.Tester/App.config b/Fate.Wpf.Controls.Tester/App.config
new file mode 100644
index 0000000..787dcbe
--- /dev/null
+++ b/Fate.Wpf.Controls.Tester/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Fate.Wpf.Controls.Tester/App.xaml b/Fate.Wpf.Controls.Tester/App.xaml
new file mode 100644
index 0000000..80e9924
--- /dev/null
+++ b/Fate.Wpf.Controls.Tester/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/Fate.Wpf.Controls.Tester/App.xaml.cs b/Fate.Wpf.Controls.Tester/App.xaml.cs
new file mode 100644
index 0000000..324e816
--- /dev/null
+++ b/Fate.Wpf.Controls.Tester/App.xaml.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Configuration;
+using System.Data;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows;
+
+namespace Fate.Wpf.Controls.Tester
+{
+ ///
+ /// Interaction logic for App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/Fate.Wpf.Controls.Tester/Fate.Wpf.Controls.Tester.csproj b/Fate.Wpf.Controls.Tester/Fate.Wpf.Controls.Tester.csproj
new file mode 100644
index 0000000..18fa687
--- /dev/null
+++ b/Fate.Wpf.Controls.Tester/Fate.Wpf.Controls.Tester.csproj
@@ -0,0 +1,108 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {76895FDD-2975-47D3-B3B6-490C09C9A7ED}
+ WinExe
+ Fate.Wpf.Controls.Tester
+ Fate.Wpf.Controls.Tester
+ v4.7.1
+ 512
+ {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ 4
+ true
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+ lib\Fate.Wpf.MVVM.dll
+
+
+
+
+
+
+
+
+
+
+ 4.0
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ MSBuild:Compile
+ Designer
+
+
+ App.xaml
+ Code
+
+
+ MainWindow.xaml
+ Code
+
+
+
+
+
+ Code
+
+
+ True
+ True
+ Resources.resx
+
+
+ True
+ Settings.settings
+ True
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+
+
+
+
+
+ {7e9c7618-9941-4d31-8965-0e8b4d6b8004}
+ Fate.Wpf.Controls
+
+
+
+
\ No newline at end of file
diff --git a/Fate.Wpf.Controls.Tester/MainWindow.xaml b/Fate.Wpf.Controls.Tester/MainWindow.xaml
new file mode 100644
index 0000000..88b4c9d
--- /dev/null
+++ b/Fate.Wpf.Controls.Tester/MainWindow.xaml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Fate.Wpf.Controls.Tester/MainWindow.xaml.cs b/Fate.Wpf.Controls.Tester/MainWindow.xaml.cs
new file mode 100644
index 0000000..3b5cde9
--- /dev/null
+++ b/Fate.Wpf.Controls.Tester/MainWindow.xaml.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace Fate.Wpf.Controls.Tester
+{
+ ///
+ /// Interaction logic for MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/Fate.Wpf.Controls.Tester/MainWindowViewModel.cs b/Fate.Wpf.Controls.Tester/MainWindowViewModel.cs
new file mode 100644
index 0000000..16dcb9f
--- /dev/null
+++ b/Fate.Wpf.Controls.Tester/MainWindowViewModel.cs
@@ -0,0 +1,62 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Fate.Wpf.MVVM;
+
+namespace Fate.Wpf.Controls.Tester
+{
+ public class MainWindowViewModel : PropertyChangedBase
+ {
+ private string _labelText;
+ private string _labelValueText;
+ private string _labelUnitText;
+ private string _labelUnitValueText;
+ private string _labelUnitUnitText;
+
+ public MainWindowViewModel()
+ {
+ WireCommands();
+ }
+
+ public string LabelText { get => _labelText; set => SetProperty(ref _labelText, value); }
+
+ public string LabelValueText { get => _labelValueText; set => SetProperty(ref _labelValueText, value); }
+
+ public string LabelUnitText { get => _labelUnitText; set => SetProperty(ref _labelUnitText, value); }
+
+ public string LabelUnitValueText { get => _labelUnitValueText; set => SetProperty(ref _labelUnitValueText, value); }
+
+ public string LabelUnitUnitText { get => _labelUnitUnitText; set => SetProperty(ref _labelUnitUnitText, value); }
+
+ public AsyncCommand