blob: 8cba3b74b53a194ad8926ced8c36ff889125756e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<UserControl x:Class="Tango.Stubs.UI.Views.MainView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:mahapps="http://metro.mahapps.com/winfx/xaml/controls"
xmlns:stubs="clr-namespace:Tango.Stubs.Views;assembly=Tango.Stubs"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="720" d:DesignWidth="1280">
<Grid>
<stubs:StubsView DataContext="{Binding StubsViewVM}" />
</Grid>
</UserControl>
|