Skip to content

Updated the read me file #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ This section provides a quick overview for working with the SfCheckBox for .NET

To use this control inside an application, you must register the handler for Syncfusion® core.

```C#

**C#**
```
using Microsoft.Extensions.Logging;
using Syncfusion.Maui.Core.Hosting;

Expand Down Expand Up @@ -46,18 +46,17 @@ namespace CheckBoxGettingStarted
1. Import the control namespace `Syncfusion.Maui.Buttons` in XAML or C# code.
2. Initialize [SfCheckBox](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfCheckBox.html) control.

```xml
**XAML**
```
<ContentPage
. . .
xmlns:buttons="clr-namespace:Syncfusion.Maui.Buttons;assembly=Syncfusion.Maui.Buttons">
<buttons:SfCheckBox x:Name="checkBox"/>
</ContentPage>
```

```C#
using Syncfusion.Maui.Core;
. . .

**C#**
```
using Syncfusion.Maui.Buttons;
namespace CheckBoxGettingStarted
{
Expand Down Expand Up @@ -184,8 +183,6 @@ public MainPage()

```



Run the application to render the following output:

![.NET MAUI CheckBox](picktoppings.png)
Expand Down