blob: 4fab803024c0dea7b0640173680491a99e06bbd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<mahapps:MetroWindow x:Class="Tango.StubsUtils.Service.UI.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mahapps="http://metro.mahapps.com/winfx/xaml/controls"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Tango.StubsUtils.Service.UI"
xmlns:tb="http://www.hardcodet.net/taskbar"
xmlns:views="clr-namespace:Tango.StubsUtils.Service.UI.Views"
mc:Ignorable="d"
Title="Tango Stubs Service" Height="400" Width="700" EnableDWMDropShadow="True" WindowTitleBrush="{StaticResource FSE_PrimaryBackgroundLightBrush}" BorderBrush="{StaticResource FSE_PrimaryBackgroundLightBrush}" OverrideDefaultWindowCommandsBrush="{StaticResource FSE_PrimaryForegroundBrush}" TitleForeground="{StaticResource FSE_PrimaryForegroundBrush}" TitleCaps="False" BorderThickness="1" WindowStartupLocation="CenterScreen" Background="{StaticResource FSE_PrimaryBackgroundBrush}" Foreground="{StaticResource FSE_PrimaryForegroundBrush}" DataContext="{Binding RelativeSource={RelativeSource Self}}" Visibility="Hidden">
<Grid>
<views:MainView x:Name="MainView" />
</Grid>
</mahapps:MetroWindow>
|