Update image resources, Set font style.
[profile/tv/apps/dotnet/home.git] / TVHome / TVHome / Controls / SubPanelReservedButton.xaml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <Controls:PanelButton xmlns="http://xamarin.com/schemas/2014/forms"
3                       xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4                       xmlns:Controls="clr-namespace:TVHome.Controls"
5                       x:Class="TVHome.Controls.SubPanelReservedButton">
6   <RelativeLayout x:Name = "ButtonBox"
7                   HorizontalOptions="Center">
8     <Image x:Name="ButtonImage"
9            RelativeLayout.XConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Width, Factor=0.120879}"
10            RelativeLayout.YConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Height, Factor=0.095652}"
11            RelativeLayout.HeightConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Height, Factor=0.6}"
12            RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Width, Factor=0.75824}"
13            Source="{Binding CurrentStateDescription.IconPath}" />
14     <Image x:Name="ButtonDimmedImage"
15            RelativeLayout.XConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Width, Factor=0.120879}"
16            RelativeLayout.YConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Height, Factor=0.095652}"
17            RelativeLayout.HeightConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Height, Factor=0.6}"
18            RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Width, Factor=0.75824}"
19              Source="img_home_list_dimmed_apps_75.png" />
20     <Label x:Name="ButtonTitle"
21            RelativeLayout.XConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Width, Factor=0.120879}"
22            RelativeLayout.YConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Height, Factor=0.77391}"
23            RelativeLayout.HeightConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Height, Factor=0.1303478}"
24            RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Width, Factor=0.758241}"
25            Opacity="0.6"
26            TextColor="White"
27            FontFamily="BreezeSans"
28            LineBreakMode="TailTruncation"
29            HorizontalTextAlignment="Center"
30            Text="{Binding CurrentStateDescription.Label}" />
31     <Button x:Name = "ButtonFocusArea"
32            RelativeLayout.XConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Width, Factor=0}"
33            RelativeLayout.YConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Height, Factor=0}"
34            RelativeLayout.HeightConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Height, Factor=1}"
35            RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToView, ElementName=ButtonBox, Property=Width, Factor=1}"
36             Focused="OnFocused"
37             Unfocused="OnUnfocused"
38             Clicked="OnClicked"
39             Opacity="0" />
40   </RelativeLayout>
41 </Controls:PanelButton>