blob: 61c79481e4aaecb43bc58692222f9f4722e4b103 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<mahapps:MetroWindow x:Class="Tango.Stubs.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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:mahapps="http://metro.mahapps.com/winfx/xaml/controls"
xmlns:views="clr-namespace:Tango.Stubs.UI.Views"
xmlns:local="clr-namespace:Tango.Stubs.UI"
mc:Ignorable="d"
Title="Tango Stubs Execution Utility" Height="720" Width="1280" TitlebarHeight="40" WindowState="Maximized" TitleCaps="False" BorderBrush="Gray" BorderThickness="1" WindowStartupLocation="CenterScreen" Background="#202020" Foreground="Gainsboro">
<mahapps:MetroWindow.TitleTemplate>
<DataTemplate>
<TextBlock Foreground="Gray" Text="{Binding}" VerticalAlignment="Center"></TextBlock>
</DataTemplate>
</mahapps:MetroWindow.TitleTemplate>
<mahapps:MetroWindow.IconTemplate>
<DataTemplate>
<Image Source="script.ico" Width="16" Height="16"></Image>
</DataTemplate>
</mahapps:MetroWindow.IconTemplate>
<Grid>
<views:MainView></views:MainView>
</Grid>
</mahapps:MetroWindow>
|