У меня возникают проблемы при повторном использовании некоторых кнопок, я хотел бы добавить их в качестве стиля, но не могу правильно установить ImageSource :
В настоящее время у меня есть FontAwesome в приложении xaml:
<OnPlatform x:TypeArguments="x:String" x:Key="FontAwesomeSolidOTF">
<On Platform="Android" Value="Fonts/Font Awesome 5 Free-Solid-900.otf#Regular" />
<On Platform="WPF" Value="Assets/Fonts/Font Awesome 5 Free-Solid-900.otf#Font Awesome 5 Free Regular" />
<On Platform="iOS" Value="FontAwesome5Free-Regular" />
<On Platform="UWP" Value="/Assets/Fonts/Font Awesome 5 Free-Solid-900.otf#Font Awesome 5 Free" />
</OnPlatform>
И кнопка правильно работает на xaml:
<Button x:Name="btnBack" Grid.Row="0" Grid.Column="0" ContentLayout="Top,5" Text="Back"
TextColor="#fff" BackgroundColor="#565C5A" Clicked="btnBack_Clicked" HeightRequest="80"
WidthRequest="80" Padding="0,15,0,15" FontSize="14">
<Button.ImageSource>
<FontImageSource FontFamily="{StaticResource FontAwesomeSolidOTF}" Glyph="" Color="#fff"/>
</Button.ImageSource>
</Button>
Я пытаюсь создать кнопку на c# код позади:
public static Style BtnBack(ResourceDictionary resources) {
return new Style(typeof(Button))
{
Setters = {
new Setter { Property = Button.ContentLayoutProperty, Value = new ButtonContentLayout(ButtonContentLayout.ImagePosition.Top, 5) },
new Setter { Property = Button.TextProperty, Value = "Back" },
new Setter { Property = Button.TextColorProperty, Value = "#565C5A" },
new Setter { Property = Button.HeightRequestProperty, Value = "80" },
new Setter { Property = Button.WidthRequestProperty, Value = "80" },
new Setter { Property = Button.PaddingProperty, Value = "0,15,0,15" },
new Setter { Property = Button.FontSizeProperty, Value = "14" },
new Setter { Property = FontImageSource.FontFamilyProperty, Value = resources["FontAwesomeSolidOTF"]},
new Setter { Property = FontImageSource.GlyphProperty, Value = "\uf3e5"},
new Setter { Property = FontImageSource.ColorProperty, Value = "#fff"}
}
};
}
Я установил его в приложении и использую в xaml:
Resources.Add("btnBack", Buttons.BtnBack(Resources));
<Button Style="{StaticResource btnBack}" Grid.Row="0" Grid.Column="0" />
Как правильно установить FontImageSource с FontAwesome и Glyph *? Спасибо.