mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
90690fba01
* feat: add layout demo * feat: add some of layout demos
52 lines
1.2 KiB
C#
52 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AntBlazor
|
|
{
|
|
public partial class Breadcrumb : AntDomComponentBase
|
|
{
|
|
[Parameter]
|
|
public RenderFragment ChildContent { get; set; }
|
|
|
|
[Parameter]
|
|
public bool AutoGenerate { get; set; } = false;
|
|
|
|
[Parameter]
|
|
public string Separator { get; set; } = "/";
|
|
|
|
[Parameter]
|
|
public string RouteLabel { get; set; } = "breadcrumb";
|
|
|
|
[Inject]
|
|
public NavigationManager NavigationManager { get; set; }
|
|
|
|
private readonly BreadcrumbOption[] _breadcrumbs = Array.Empty<BreadcrumbOption>();
|
|
|
|
private void Navigate(string url)
|
|
{
|
|
NavigationManager.NavigateTo(url);
|
|
}
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
this.ClassMapper.Add("ant-breadcrumb");
|
|
|
|
base.OnInitialized();
|
|
}
|
|
|
|
private void RegisterRouterChange()
|
|
{
|
|
}
|
|
}
|
|
|
|
public class BreadcrumbOption
|
|
{
|
|
public string Label { get; set; }
|
|
|
|
public Dictionary<string, object> Params { get; set; }
|
|
|
|
public Uri Url { get; set; }
|
|
}
|
|
}
|