diff --git a/WpfViewModelFirst.sln b/WpfViewModelFirst.sln new file mode 100644 index 0000000..c8e9235 --- /dev/null +++ b/WpfViewModelFirst.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.3.32804.467 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfViewModelFirst", "WpfViewModelFirst\WpfViewModelFirst.csproj", "{E5611330-98DE-4571-A035-65576B2F8D4B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E5611330-98DE-4571-A035-65576B2F8D4B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E5611330-98DE-4571-A035-65576B2F8D4B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E5611330-98DE-4571-A035-65576B2F8D4B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E5611330-98DE-4571-A035-65576B2F8D4B}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {4A399FFF-107F-4834-9067-FC2698D5601E} + EndGlobalSection +EndGlobal diff --git a/WpfViewModelFirst/App.xaml b/WpfViewModelFirst/App.xaml new file mode 100644 index 0000000..16cc4cd --- /dev/null +++ b/WpfViewModelFirst/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/WpfViewModelFirst/App.xaml.cs b/WpfViewModelFirst/App.xaml.cs new file mode 100644 index 0000000..3a8b1c9 --- /dev/null +++ b/WpfViewModelFirst/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 WpfViewModelFirst +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/WpfViewModelFirst/AssemblyInfo.cs b/WpfViewModelFirst/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/WpfViewModelFirst/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/WpfViewModelFirst/MainWindow.xaml b/WpfViewModelFirst/MainWindow.xaml new file mode 100644 index 0000000..8ffa139 --- /dev/null +++ b/WpfViewModelFirst/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/WpfViewModelFirst/MainWindow.xaml.cs b/WpfViewModelFirst/MainWindow.xaml.cs new file mode 100644 index 0000000..4fa8ad7 --- /dev/null +++ b/WpfViewModelFirst/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 WpfViewModelFirst +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} diff --git a/WpfViewModelFirst/WpfViewModelFirst.csproj b/WpfViewModelFirst/WpfViewModelFirst.csproj new file mode 100644 index 0000000..4106cb0 --- /dev/null +++ b/WpfViewModelFirst/WpfViewModelFirst.csproj @@ -0,0 +1,10 @@ + + + + WinExe + net6.0-windows + enable + true + + +