You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
UWPHook/UWPHook/GameControl.xaml

15 lines
958 B
XML

<UserControl x:Class="UWPHook.Game"
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:UWPHook"
mc:Ignorable="d" d:DesignWidth="300" Height="100">
<Grid>
<TextBlock x:Name="textBlock" Margin="10,10,10,0" TextWrapping="Wrap" Text="{Binding game_full_name}" VerticalAlignment="Top" FontWeight="Bold" FontSize="24"/>
<TextBlock x:Name="textBlock1" Margin="10,74,10,-6" TextWrapping="Wrap" Text="{Binding game_path}" VerticalAlignment="Top"/>
<TextBlock x:Name="textBlock2" HorizontalAlignment="Left" Margin="10,53,0,0" TextWrapping="Wrap" Text="{Binding game_alias}" VerticalAlignment="Top"/>
</Grid>
</UserControl>