27 lines
1.4 KiB
XML
27 lines
1.4 KiB
XML
<UserControl x:Class="TV_Player.GroupButton"
|
|
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"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="100" d:DesignWidth="200">
|
|
<Viewbox Grid.Row="1">
|
|
<Grid x:Name="ButtonBorder" Height="70" Width="150" >
|
|
<Grid VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="0.4*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Rectangle RadiusX="15" RadiusY="15" x:Name="Border" StrokeThickness="3" Stroke="Yellow" Stretch="Fill" Grid.RowSpan="2" Fill="#FF1F1E1E"/>
|
|
|
|
<TextBlock x:Name="groupName" Text="Group name" FontSize="15" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
<TextBlock Grid.Row="1" FontSize="10" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center" LineStackingStrategy="BlockLineHeight" LineHeight="10">
|
|
<Run x:Name="programsFound"/>
|
|
<Run>Programs</Run>
|
|
</TextBlock>
|
|
</Grid>
|
|
</Grid>
|
|
</Viewbox>
|
|
</UserControl>
|