dtlauncher/.old 3/dtlauncher-client-win/ProgramName.xaml

20 lines
1.2 KiB
XML

<UserControl x:Class="dtlauncher_client_win.ProgramName"
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:dtlauncher_client_win"
mc:Ignorable="d"
d:DesignHeight="40" d:DesignWidth="140" BorderThickness="0">
<Grid>
<!--Grid.ColumnDefinitions>
<ColumnDefinition Width="40"/>
<ColumnDefinition/>
</>
<Image x:Name="IconImage" Grid.Column="0" Stretch="Fill" Margin="3,3,3,3"
Source="{Binding Icon, RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type local:ProgramLabel}}}"/-->
<Label Name="NameLabel" Grid.Column="1" VerticalContentAlignment="Center" FontSize="22" Foreground="AliceBlue"
Content="{Binding Content, RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type local:ProgramLabel}}}"/>
</Grid>
</UserControl>