0
mdk_s73 created
- ABP Framework version: v7.4
- UI Type: Blazor Server
- Database System: EF Core (SQL Server, Oracle, MySQL, PostgreSQL, etc..) / MongoDB
- Tiered (for MVC) or Auth Server Separated (for Angular): yes/no
- Exception message and full stack trace:
- Steps to reproduce the issue:
I need to change the UI of the MainHeaderToolbarUserMenu but cant find any documentation on how to do this. Please can you explain how I can do this.
2 Answer(s)
-
0
Hi,
Try:
MyMainHeaderToolbarUserMenu.razor
@using Volo.Abp.AspNetCore.Components.MauiBlazor.LeptonXTheme.Components.ApplicationLayout.SideMenu.MainHeader @using Volo.Abp.DependencyInjection @inherits MainHeaderToolbarUserMenu @attribute [ExposeServices(typeof(MainHeaderToolbarUserMenu))] @attribute [Dependency(ReplaceServices = true)] My Custom Page
MyMainHeaderToolbarUserMenu.razor.cs
using Volo.Abp.AspNetCore.Components.MauiBlazor.LeptonXTheme.Components.ApplicationLayout.SideMenu.MainHeader; using Volo.Abp.DependencyInjection; [ExposeServices(typeof(MyMainHeaderToolbarUserMenu))] [Dependency(ReplaceServices = true)] public partial class MyMainHeaderToolbarUserMenu { }
-
0
Thank you.