Skip to content

Instantly share code, notes, and snippets.

@dublicator
dublicator / App.xaml
Last active August 29, 2015 14:09
Remove Code-Behind files from Views (MVVM WPF)
<!-- Assembly Mvvm.Views -->
<!-- You can remove code-behind file App.cs-->
<Application x:Class="Mvvm.Views.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>