10 lines
324 B
XML
10 lines
324 B
XML
<Window x:Class="Demo.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="clr-namespace:Demo.ViewModels">
|
|
<Window.DataContext>
|
|
<vm:MainViewModel />
|
|
</Window.DataContext>
|
|
<Grid />
|
|
</Window>
|