How to define and apply a common style for SfNumericTextBox in Xamarin.Forms
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: