Getting Started with the .NET MAUI NavigationView control
This guide provides the information you need to start using the Telerik UI for .NET MAUI NavigationView by adding the control to your project.
At the end, you will be able to achieve the following result.
Prerequisites
Before adding the NavigationView, you need to:
Define the Control
When your .NET MAUI application is set up, you are ready to add a NavigationView control to your page.
1. Define the NavigationView in XAML:
<telerik:RadNavigationView x:Name="navigationView" AutomationId="navigationView">
<telerik:RadNavigationView.Items>
<telerik:NavigationViewItem Text="Item 1" />
<telerik:NavigationViewItem Text="Item 2" />
<telerik:NavigationViewItem Text="Item 3" />
<telerik:NavigationViewItem Text="Item 4" />
<telerik:NavigationViewItem Text="Item 5" />
</telerik:RadNavigationView.Items>
<telerik:RadNavigationView.Content>
<Label HorizontalOptions="Center"
VerticalOptions="Center"
Text="{Binding SelectedItem.Text, Source={x:Reference navigationView}}" />
</telerik:RadNavigationView.Content>
</telerik:RadNavigationView>
RadNavigationView
provides a read only collectionItems
of typeIList<NavigationViewItemBase>
.
2. Add the telerik
namespace:
xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
3. Register the Telerik controls through the Telerik.Maui.Controls.Compatibility.UseTelerik
extension method called inside the CreateMauiApp
method of the MauiProgram.cs
file of your project:
using Telerik.Maui.Controls.Compatibility;
public static class MauiProgram
{
public static MauiApp CreateMauiApp()
{
var builder = MauiApp.CreateBuilder();
builder
.UseTelerik()
.UseMauiApp<App>()
.ConfigureFonts(fonts =>
{
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
});
return builder.Build();
}
}
For the NavigationView Getting Started example refer to the SDKBrowser Demo Application.