Skip to content
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: 7 additions & 8 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 SfRadioButton for .N

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 RadioButtonGettingStarted
1. Import the control namespace `Syncfusion.Maui.Buttons` in XAML or C# code.
2. Initialize [SfRadioButton](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html) control.

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

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

**C#**
```
using Syncfusion.Maui.Buttons;
namespace RadioButtonGettingStarted
{
Expand Down Expand Up @@ -107,4 +106,4 @@ You can group multiple Radio Buttons together by using Radio Group. Only one but
```
Run the application to render the following output:

![Getting started with .NET MAUI busy indicator](net-maui-radio-button.png)
![Getting started with .NET MAUI Radio Button](net-maui-radio-button.png)