Skip to content

Commit 57c3cc2

Browse files
committed
Updated the README.md file
1 parent 803e01b commit 57c3cc2

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

README.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,38 @@
11
# maui-numericentry-samples
22
Contains samples for .NET MAUI Numeric Entry
3+
# Getting started with Numeric Entry control
4+
The .NET MAUI NumericEntry control is designed to provide a user-friendly and advanced input experience for numeric values. It supports a wide range of numeric formats, including currency, percentages, decimals, and more. With its key features, it enables enhanced user experience and facilitates input validation.
5+
6+
Documentation: https://help.syncfusion.com/maui/numericentry/getting-started
7+
8+
### Adding the .NET MAUI NumericEntry
9+
Step 1: Add the NuGet to the project and add the namespace as shown in the following code sample:
10+
11+
**[XAML]**
12+
```
13+
xmlns:editors="clr-namespace:Syncfusion.Maui.Inputs;assembly=Syncfusion.Maui.Inputs"
14+
```
15+
**[C#]**
16+
```
17+
using Syncfusion.Maui.Inputs;
18+
```
19+
20+
Step 2: Set the NumericEntry control to content in `ContentPage.`
21+
```
22+
<editors:SfNumericEntry x:Name="numericEntry" />
23+
```
24+
**[C#]**
25+
```
26+
SfNumericEntry sfNumericEntry = new SfNumericEntry();
27+
```
28+
## Project pre-requisites
29+
30+
Make sure that you have the compatible versions of Visual Studio with .NET MAUI workloads and .NET SDK version in your machine before starting to work on this project. Refer to [System Requirements for .NET MAUI](https://help.syncfusion.com/maui/system-requirements).
31+
32+
## How to run this application?
33+
34+
To run this application, you need to first clone the getting-started-with-the-dotnet-maui-combobox-controls repository and then open it in Visual Studio 2022. Now, simply build and run your project to view the output.
35+
36+
## <a name="troubleshooting"></a>Troubleshooting ##
37+
### Path too long exception
38+
If you are facing a path too long exception when building this example project, close Visual Studio rename the repository to short, and build the project.

0 commit comments

Comments
 (0)