Browse Source

Add ShowToolbar property to PageLayout

pull/24582/head
maliming 3 weeks ago
parent
commit
e9dcded405
No known key found for this signature in database GPG Key ID: A646B9CB645ECEA4
  1. 2
      framework/src/Volo.Abp.AspNetCore.Components.Web.Theming/Layout/PageLayout.cs

2
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<PageToolbarItem> ToolbarItems { get; } = new();

Loading…
Cancel
Save