├── .gitattributes ├── .gitignore ├── Common ├── Common.csproj ├── Model.cs ├── Properties │ └── AssemblyInfo.cs └── ViewModelBase.cs ├── HighSpeedMvvm.sln ├── Problem ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Problem.csproj ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── ViewModel.cs ├── Readme.md ├── Solution1 ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Solution1.csproj ├── ViewModel.cs └── packages.config ├── Solution2 ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Solution2.csproj └── ViewModel.cs └── Solution3 ├── App.config ├── App.xaml ├── App.xaml.cs ├── IRefresh.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Solution3.csproj └── ViewModel.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/.gitignore -------------------------------------------------------------------------------- /Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Common/Common.csproj -------------------------------------------------------------------------------- /Common/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Common/Model.cs -------------------------------------------------------------------------------- /Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Common/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Common/ViewModelBase.cs -------------------------------------------------------------------------------- /HighSpeedMvvm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/HighSpeedMvvm.sln -------------------------------------------------------------------------------- /Problem/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Problem/App.config -------------------------------------------------------------------------------- /Problem/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Problem/App.xaml -------------------------------------------------------------------------------- /Problem/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Problem/App.xaml.cs -------------------------------------------------------------------------------- /Problem/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Problem/MainWindow.xaml -------------------------------------------------------------------------------- /Problem/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Problem/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Problem/Problem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Problem/Problem.csproj -------------------------------------------------------------------------------- /Problem/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Problem/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Problem/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Problem/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Problem/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Problem/Properties/Resources.resx -------------------------------------------------------------------------------- /Problem/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Problem/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Problem/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Problem/Properties/Settings.settings -------------------------------------------------------------------------------- /Problem/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Problem/ViewModel.cs -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Readme.md -------------------------------------------------------------------------------- /Solution1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution1/App.config -------------------------------------------------------------------------------- /Solution1/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution1/App.xaml -------------------------------------------------------------------------------- /Solution1/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution1/App.xaml.cs -------------------------------------------------------------------------------- /Solution1/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution1/MainWindow.xaml -------------------------------------------------------------------------------- /Solution1/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution1/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Solution1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Solution1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Solution1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution1/Properties/Resources.resx -------------------------------------------------------------------------------- /Solution1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Solution1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution1/Properties/Settings.settings -------------------------------------------------------------------------------- /Solution1/Solution1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution1/Solution1.csproj -------------------------------------------------------------------------------- /Solution1/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution1/ViewModel.cs -------------------------------------------------------------------------------- /Solution1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution1/packages.config -------------------------------------------------------------------------------- /Solution2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution2/App.config -------------------------------------------------------------------------------- /Solution2/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution2/App.xaml -------------------------------------------------------------------------------- /Solution2/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution2/App.xaml.cs -------------------------------------------------------------------------------- /Solution2/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution2/MainWindow.xaml -------------------------------------------------------------------------------- /Solution2/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution2/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Solution2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Solution2/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution2/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Solution2/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution2/Properties/Resources.resx -------------------------------------------------------------------------------- /Solution2/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution2/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Solution2/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution2/Properties/Settings.settings -------------------------------------------------------------------------------- /Solution2/Solution2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution2/Solution2.csproj -------------------------------------------------------------------------------- /Solution2/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution2/ViewModel.cs -------------------------------------------------------------------------------- /Solution3/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution3/App.config -------------------------------------------------------------------------------- /Solution3/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution3/App.xaml -------------------------------------------------------------------------------- /Solution3/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution3/App.xaml.cs -------------------------------------------------------------------------------- /Solution3/IRefresh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution3/IRefresh.cs -------------------------------------------------------------------------------- /Solution3/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution3/MainWindow.xaml -------------------------------------------------------------------------------- /Solution3/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution3/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Solution3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Solution3/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution3/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Solution3/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution3/Properties/Resources.resx -------------------------------------------------------------------------------- /Solution3/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution3/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Solution3/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution3/Properties/Settings.settings -------------------------------------------------------------------------------- /Solution3/Solution3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution3/Solution3.csproj -------------------------------------------------------------------------------- /Solution3/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bblanchon/HighSpeedMvvm/HEAD/Solution3/ViewModel.cs --------------------------------------------------------------------------------