Sök…


Anmärkningar

Resurser att titta på:

Få åtkomst till anpassade teckensnitt i Syles

Xamarin.Forms är en fantastisk mekanism för att utforma din plattformsapplikation med globala stilar.

I mobilvärlden måste din applikation vara vacker och sticker ut från de andra applikationerna. Ett av dessa tecken är anpassade teckensnitt som används i applikationen.

Med kraftstöd av XAML Styling i Xamarin.Forms skapade precis basstil för alla etiketter med dina anpassade teckensnitt.

För att inkludera anpassade teckensnitt i ditt iOS- och Android-projekt följer du guiden i Använda anpassade teckensnitt på iOS och Android med Xamarin.Forms- inlägg skriven av Gerald.

Förklara stil i App.xaml-filresursavsnittet. Detta gör alla stilar globalt synliga.

Från Gerald inlägg ovan måste vi använda StyleId-egenskapen men det är inte bindbar egendom, så för att använda den i Style Setter måste vi skapa Attachable Property för det:

public static class FontHelper
{
    public static readonly BindableProperty StyleIdProperty =
        BindableProperty.CreateAttached(
            propertyName: nameof(Label.StyleId),
            returnType: typeof(String),
            declaringType: typeof(FontHelper),
            defaultValue: default(String),
            propertyChanged: OnItemTappedChanged);

    public static String GetStyleId(BindableObject bindable) => (String)bindable.GetValue(StyleIdProperty);

    public static void SetStyleId(BindableObject bindable, String value) => bindable.SetValue(StyleIdProperty, value);


    public static void OnItemTappedChanged(BindableObject bindable, object oldValue, object newValue)
    {
        var control = bindable as Element;
        if (control != null)
        {
            control.StyleId = GetStyleId(control);
        }
    }
}

Lägg sedan till stil i App.xaml-resursen:

<?xml version="1.0" encoding="utf-8" ?>
<Application xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:h="clr-namespace:My.Helpers"
             x:Class="My.App">

  <Application.Resources>

    <ResourceDictionary>
        <Style x:Key="LabelStyle" TargetType="Label">
            <Setter Property="FontFamily" Value="Metric Bold" />
            <Setter Property="h:FontHelper.StyleId" Value="Metric-Bold" />
        </Style>
    </ResourceDictionary>

  </Application.Resources>

</Application>

Enligt inlägget ovan måste vi skapa Custom Renderer för Label som ärver från LabelRenderer On Android-plattformen.

internal class LabelExRenderer : LabelRenderer
{
    protected override void OnElementChanged(ElementChangedEventArgs<Label> e)
    {
        base.OnElementChanged(e);
        if (!String.IsNullOrEmpty(e.NewElement?.StyleId))
        {
            var font = Typeface.CreateFromAsset(Forms.Context.ApplicationContext.Assets, e.NewElement.StyleId + ".ttf");
            Control.Typeface = font;
        }
    }
}

För iOS-plattformen krävs inga anpassade återgivare.

Nu kan du få stil i din sida:

För specifik etikett

<Label Text="Some text" Style={StaticResource LabelStyle} />

Eller använd stil på alla etiketter på sidan genom att skapa stil baserad på LabesStyle

<!-- language: xaml -->

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="My.MainPage">

  <ContentPage.Resources>

    <ResourceDictionary>
        <Style TargetType="Label" BasedOn={StaticResource LabelStyle}>
        </Style>
    </ResourceDictionary>

  </ContentPage.Resources>

  <Label Text="Some text" />      

</ContentPage>


Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow