3074/OverlayWindow.xaml

42 lines
2.4 KiB
XML

<Window x:Class="_3074.OverlayWindow"
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:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:_3074"
mc:Ignorable="d"
Title="Thirty-Seventy-Four Overlay" Height="100" Width="120"
Background="{x:Null}" ResizeMode="NoResize"
AllowsTransparency="True"
WindowStyle="None" Topmost="True"
WindowStartupLocation="Manual" Top="0" Left="0"
FontFamily="Consolas" d:DataContext="{d:DesignInstance local:OverlayViewModel}">
<Grid Margin="15">
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Grid.Column="0" Text="3074" Foreground="Orange"></TextBlock>
<TextBlock Grid.Row="0" Grid.Column="1" Text="{Binding F3074}" Foreground="Red"></TextBlock>
<TextBlock Grid.Row="1" Grid.Column="0" Text="3074UL" Foreground="Orange"></TextBlock>
<TextBlock Grid.Row="1" Grid.Column="1" Text="{Binding F3074UL}" Foreground="Red"></TextBlock>
<TextBlock Grid.Row="2" Grid.Column="0" Text="7500" Foreground="Orange"></TextBlock>
<TextBlock Grid.Row="2" Grid.Column="1" Text="{Binding F7500}" Foreground="Red"></TextBlock>
<TextBlock Grid.Row="3" Grid.Column="0" Text="27k" Foreground="Orange"></TextBlock>
<TextBlock Grid.Row="3" Grid.Column="1" Text="{Binding F27K}" Foreground="Red"></TextBlock>
<TextBlock Grid.Row="4" Grid.Column="0" Text="30k" Foreground="Orange"></TextBlock>
<TextBlock Grid.Row="4" Grid.Column="1" Text="{Binding F30K}" Foreground="Red"></TextBlock>
<TextBlock Grid.Row="5" Grid.Column="0" Text="FG" Foreground="Orange"></TextBlock>
<TextBlock Grid.Row="5" Grid.Column="1" Text="{Binding FFullGame}" Foreground="Red"></TextBlock>
</Grid>
</Window>