Articles in this section
Category / Section

How to define and apply a common style for SfNumericTextBox in Xamarin.Forms

1 min read

 

This section explains how to set Style for Xamarin.Forms SfNumericTextBox.

 

SfNumericTextBox supports Xamarin.Forms Style support. And the following code example shows the setting of SfNumericTextBox property value in Style. In Xamarin.Forms application have the same control in multiple times with the same appearance. In this case setting of Style is avoid the repetitive of each control.

 

 

<ContentPage.Resources>

    <ResourceDictionary>

        <Style x:Key="NumericStyle" TargetType="numeric:SfNumericTextBox">

            <Setter Property="HorizontalOptions" Value="CenterAndExpand"/>

            <Setter Property="VerticalOptions" Value="CenterAndExpand"/>

            <Setter Property="TextColor" Value="Red"/>

            <Setter Property="BackgroundColor" Value="Yellow"/>

            <Setter Property="ParserMode" Value="Decimal"/>

            <Setter Property="Value" Value="23"/>

        </Style>

    </ResourceDictionary>

</ContentPage.Resources>

 

<ContentPage.Content>

    <StackLayout BackgroundColor="White" >

        < numeric:SfNumericTextBox Style="{DynamicResource NumericStyle}" />

    </StackLayout>

</ContentPage.Content>

 

 

Output:

A close up of a logo

Description automatically generated

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied