Skip to content

Commit 674caf3

Browse files
Merge pull request #1 from SyncfusionExamples/UpdateReadMe
844388-Update the README.md file
2 parents 803e01b + f4bb48d commit 674caf3

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,42 @@
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 maui-numericentry-samples 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.
39+
40+
## License
41+
42+
Syncfusion has no liability for any damage or consequence that may arise by using or viewing the samples. The samples are for demonstrative purposes, and if you choose to use or access the samples, you agree to not hold Syncfusion liable, in any form, for any damage that is related to use, for accessing, or viewing the samples. By accessing, viewing, or seeing the samples, you acknowledge and agree Syncfusion’s samples will not allow you seek injunctive relief in any form for any claim related to the sample. If you do not agree to this, do not view, access, utilize, or otherwise do anything with Syncfusion’s samples.

0 commit comments

Comments
 (0)