Skip to content
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

876600 - Resolving multiple H1 tag issue in README file #3

Merged
merged 1 commit into from
Mar 22, 2024
Merged
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
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,32 @@ For know more details about Radial Menu: https://www.syncfusion.com/xamarin-ui-c

Radial Menu user guide documentation: https://help.syncfusion.com/xamarin/radial-menu/getting-started

# Getting Started with Xamarin Radial Menu (SfRadialMenu)
## Getting Started with Xamarin Radial Menu (SfRadialMenu)

This section explains the steps required to launch the radial menu with hierarchical items that can be used as mobile phone system settings. This section covers only the minimal features that needed to get started with the radial menu.

# Adding SfRadialMenu reference
### Adding SfRadialMenu reference
You can add SfRadialMenu reference using one of the following methods:

## Method 1: Adding SfRadialMenu reference from nuget.org
#### Method 1: Adding SfRadialMenu reference from nuget.org

Syncfusion Xamarin components are available in nuget.org. To add SfRadialMenu to your project, open the NuGet package manager in Visual Studio, search for Syncfusion.Xamarin.SfRadialMenu, and then install it.

## Method 2: Adding SfRadialMenu reference from toolbox
#### Method 2: Adding SfRadialMenu reference from toolbox

Syncfusion also provides Xamarin Toolbox. Using this toolbox, you can drag the SfRadialMenu control to the XAML page. It will automatically install the required NuGet packages and add the namespace to the page. To install Syncfusion Xamarin Toolbox, refer to Toolbox.

## Method 3: Adding SfRadialMenu assemblies manually from the installed location
#### Method 3: Adding SfRadialMenu assemblies manually from the installed location

If you prefer to manually reference the assemblies instead referencing from NuGet, add the following assemblies in respective projects.

# Creating a simple radial menu
## Creating a simple radial menu
The SfRadialMenu control is configured entirely in C# code or in XAML markup. The following steps explain how to create SfRadialMenu and configure its elements:

## Create the project
### Create the project
Create a new BlankApp (Xamarin.Forms.Portable) application in Xamarin Studio or Visual Studio for Xamarin.Forms.

## Adding radial menu in Xamarin.Forms
#### Adding radial menu in Xamarin.Forms
* Add the required assembly references to the pcl and renderer projects.

* Add namespace for the referred assemblies.
Expand All @@ -49,7 +49,7 @@ Set the radial menu control as content to the ContentPage.
<radialMenu:SfRadialMenu x:Name="radialMenu"/>
</ContentPage.Content>
```
## Adding radial menu with items
#### Adding radial menu with items

**[XAML]**
```
Expand Down
Loading