Browse Source
Add ShowToolbar property to PageLayout
pull/24582/head
maliming
3 weeks ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
1 changed files with
2 additions and
0 deletions
-
framework/src/Volo.Abp.AspNetCore.Components.Web.Theming/Layout/PageLayout.cs
|
|
@ -31,6 +31,8 @@ public class PageLayout : IScopedDependency, INotifyPropertyChanged |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public bool ShowToolbar { get; set; } = true; |
|
|
|
|
|
|
|
|
public virtual ObservableCollection<BreadcrumbItem> BreadcrumbItems { get; } = new(); |
|
|
public virtual ObservableCollection<BreadcrumbItem> BreadcrumbItems { get; } = new(); |
|
|
|
|
|
|
|
|
public virtual ObservableCollection<PageToolbarItem> ToolbarItems { get; } = new(); |
|
|
public virtual ObservableCollection<PageToolbarItem> ToolbarItems { get; } = new(); |
|
|
|