Skip to content

Commit 0ca6108

Browse files
Merge pull request #2576 from syncfusion-content/MauiCoreHotfix
Improve SEO for radio button control
2 parents 759633d + e19bc8e commit 0ca6108

File tree

2 files changed

+19
-17
lines changed

2 files changed

+19
-17
lines changed

MAUI/Radio-Button/Getting-Started.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ description: Learn here about getting started with Syncfusion Essential Studio .
55
platform: maui
66
control: SfRadioButton
77
documentation: ug
8+
keywords : .net maui radio button, maui radio button, maui radio button group, maui radio button state.
89
---
910

1011
# Creating an application with .NET MAUI Radio Button
1112

12-
This section explains the steps required to work with the [`SfRadioButton`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html) control for .NET MAUI.
13+
This section explains the steps required to work with the [SfRadioButton](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html) control for .NET MAUI.
1314

1415
To get start quickly with our .NET MAUI Radio Button, you can check the below video.
1516

@@ -58,7 +59,7 @@ namespace ButtonSample
5859

5960
Step 1: Add the NuGet to the project as discussed in the above reference section.
6061

61-
Step 2: Add the namespace as shown in the following code sample.
62+
Step 2: Add the namespace as shown in the following code sample, to initialize the .NET MAUI Radio Button.
6263

6364
{% tabs %}
6465
{% highlight xaml %}
@@ -73,7 +74,7 @@ Step 2: Add the namespace as shown in the following code sample.
7374
{% endhighlight %}
7475
{% endtabs %}
7576

76-
Step 3: Set the control to content in `ContentPage`.
77+
Step 3: Set the .NET MAUI Radio Button control as the content in the `ContentPage.`
7778

7879
{% tabs %}
7980
{% highlight xaml %}
@@ -116,7 +117,7 @@ Step 3: Set the control to content in `ContentPage`.
116117

117118
## Setting caption
118119

119-
The radio button caption can be defined using the [`Text`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.ToggleButton.html#Syncfusion_Maui_Buttons_ToggleButton_Text) property of [`SfRadioButton`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html). This caption typically describes the meaning of the radio button and is displayed next to the radio button.
120+
The .NET MAUI Radio Button caption can be defined using the [Text](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.ToggleButton.html#Syncfusion_Maui_Buttons_ToggleButton_Text) property. This caption typically describes the meaning of the radio button and is displayed next to the radio button.
120121

121122
{% tabs %}
122123
{% highlight xaml %}
@@ -137,14 +138,14 @@ The radio button caption can be defined using the [`Text`](https://help.syncfusi
137138

138139
## Change the Radio Button state
139140

140-
The two different visual states of the [`SfRadioButton`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html) are:
141+
The two different visual states of the [.NET MAUI Radio Button](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html) are:
141142

142143
* Checked
143144
* Unchecked
144145

145-
To change the state of the radio button, you can utilize the [`IsChecked`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html#Syncfusion_Maui_Buttons_SfRadioButton_IsChecked) property of [`SfRadioButton`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html). When the radio button is checked, an inner circle is added to its visualization.
146+
To change the state of the .NET MAUI Radio Button, you can utilize the [IsChecked](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html#Syncfusion_Maui_Buttons_SfRadioButton_IsChecked) property of [SfRadioButton](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html). When the Radio Button is checked, an inner circle is added to its visualization.
146147

147-
The radio buttons are used when there is a list of two or more options or groups that are mutually exclusive, and the user must select exactly one choice, such as Select Gender or Choose the best option!.
148+
The .NET MAUI Radio Buttons are used when there is a list of two or more options or groups that are mutually exclusive, and the user must select exactly one choice, such as "Select Gender" or "Choose the best option!".
148149

149150
{% tabs %}
150151
{% highlight xaml %}
@@ -170,7 +171,7 @@ The radio buttons are used when there is a list of two or more options or groups
170171
{% endhighlight %}
171172
{% endtabs %}
172173

173-
N> [`SfRadioButtons`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html) are mutually exclusive when they are defined within [`SfRadioGroup`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html).
174+
N> [SfRadioButtons](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html) are mutually exclusive when they are defined within [SfRadioGroup](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html).
174175

175176
![.NET MAUI Radio Button](Images/Getting-Started/statechange.png)
176177

MAUI/Radio-Button/Grouping.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@ description: Learn here all about Grouping support in Syncfusion .NET MAUI Radio
55
platform: maui
66
control: SfRadioButton
77
documentation: ug
8+
keywords : .net maui radio button, maui radio button, maui radio button group, maui radio button grouping, maui radio group.
89
---
910

1011
# Grouping in .NET MAUI Radio Button (SfRadioButton)
1112

1213
## Group Key
1314

14-
The [`GroupKey`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html#Syncfusion_Maui_Buttons_SfRadioButton_GroupKey) in [`SfRadioButton`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html) allows you to group a set of radio buttons present inside any layout. By grouping in this way, you can select only one radio button that comes under same [`GroupKey`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html#Syncfusion_Maui_Buttons_SfRadioButton_GroupKey) at a time.
15+
The [GroupKey](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html#Syncfusion_Maui_Buttons_SfRadioButton_GroupKey) in [.NET MAUI Radio Button](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html) allows you to group a set of radio buttons present inside any layout. By grouping in this way, you can select only one radio button that comes under same [GroupKey](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioButton.html#Syncfusion_Maui_Buttons_SfRadioButton_GroupKey) at a time.
1516

16-
* [`CheckedItem`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html#Syncfusion_Maui_Buttons_SfRadioGroup_CheckedItem) - Gets the current checked item from radio group.
17+
* [CheckedItem](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html#Syncfusion_Maui_Buttons_SfRadioGroup_CheckedItem) - Gets the current checked item from the .NET Maui Radio Button group.
1718

1819
{% tabs %}
1920
{% highlight xaml %}
@@ -58,14 +59,14 @@ The [`GroupKey`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfR
5859

5960
### CheckedChanged event
6061

61-
The [`CheckedChanged`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html#Syncfusion_Maui_Buttons_SfRadioGroup_CheckedChanged) event of [`SfRadioGroupKey`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroupKey.html) occurs when a checked item is changed. The argument contains the following information:
62+
The [CheckedChanged](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html#Syncfusion_Maui_Buttons_SfRadioGroup_CheckedChanged) event of [SfRadioGroup](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html) occurs when a checked item is changed. The argument contains the following information:
6263

63-
* [`PreviousItem`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.CheckedChangedEventArgs.html#Syncfusion_Maui_Buttons_CheckedChangedEventArgs_PreviousItem) Gets the previously checked radio button from group.
64-
* [`CurrentItem`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.CheckedChangedEventArgs.html#Syncfusion_Maui_Buttons_CheckedChangedEventArgs_CurrentItem) Gets the currently checked radio button from group.
64+
* [PreviousItem](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.CheckedChangedEventArgs.html#Syncfusion_Maui_Buttons_CheckedChangedEventArgs_PreviousItem) - Gets the previously checked radio button from group.
65+
* [CurrentItem](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.CheckedChangedEventArgs.html#Syncfusion_Maui_Buttons_CheckedChangedEventArgs_CurrentItem) - Gets the currently checked radio button from group.
6566

66-
## SfRadioGroup
67+
## .NET MAUI Radio Group
6768

68-
[`SfRadioGroup`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html) is a container that contains a set of radio buttons. When you select a radio button in a radio group, all other items will be automatically deselected. At any given time, you can only select one radio button from the same radio group. It also includes the [`CheckedChanged`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html#Syncfusion_Maui_Buttons_SfRadioGroup_CheckedChanged) event and the [`CheckedItem`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html#Syncfusion_Maui_Buttons_SfRadioGroup_CheckedItem) property.
69+
[SfRadioGroup](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html) is a container that contains a set of radio buttons. When you select a radio button in a .NET MAUI Radio Button group, all other items will be automatically deselected. At any given time, you can only select one radio button from the same .NET MAUI Radio Button group. It also includes the [CheckedChanged](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html#Syncfusion_Maui_Buttons_SfRadioGroup_CheckedChanged) event and the [CheckedItem](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html#Syncfusion_Maui_Buttons_SfRadioGroup_CheckedItem) property.
6970

7071
{% tabs %}
7172
{% highlight xaml %}
@@ -94,9 +95,9 @@ The [`CheckedChanged`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Butto
9495

9596
![.NET MAUI RadioGroup Image](Images/Grouping/radiogroup.png)
9697

97-
### Orientation in SfRadioGroup
98+
### Orientation in .NET MAUI Radio Group
9899

99-
[`SfRadioGroup`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html) supports horizontal and vertical orientations. By default, [`SfRadioGroup`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html) is rendered with vertical orientation. You can change the orientation using the `Orientation` property.
100+
[SfRadioGroup](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Buttons.SfRadioGroup.html) supports horizontal and vertical orientations. By default, `SfRadioGroup` is rendered with vertical orientation. You can change the orientation using the `Orientation` property.
100101

101102
{% tabs %}
102103
{% highlight xaml %}

0 commit comments

Comments
 (0)