How to Show the UpDownButtons in the .NET MAUI Numeric Entry (SfNumericEntry)
The .NET MAUI Numeric Entry (SfNumericEntry) control includes up and down buttons that allow users to increase and decrease numeric values. This article demonstrates how to enable the up-down buttons, which are hidden by default. To show these buttons, set the UpDownPlacementMode property to Inline.
XAML
<syncfusion:SfNumericEntry x:Name="numericEntry"
Value="360"
UpDownPlacementMode="Inline" />
C#
SfNumericEntry numericEntry = new SfNumericEntry();
numericEntry.Value = 360;
numericEntry.UpDownPlacementMode = NumericEntryUpDownPlacementMode.Inline;
Output
Conclusion
I hope you enjoyed learning how to show UpDownButtons in .NET MAUI Numeric Entry (SfNumericEntry).
Refer to our .NET MAUI Numeric Entry feature tour page to learn about its other groundbreaking feature representations. You can explore our .NET MAUI Numeric Entry documentation to understand its features and how to use it.
Check out our .NET MAUI components from the License and Downloads page for current customers. If you are new to Syncfusion®, try our 30-day free trail to check out our .NET MAUI Numeric Entry and other .NET MAUI components.
Please let us know in the comments section if you have any queries or require clarification. You can also contact us through our support forum, Direct-Trac, or feedback portal. We are always happy to assist you!