mirror of https://github.com/abpframework/abp
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							67 lines
						
					
					
						
							1.7 KiB
						
					
					
				
			
		
		
	
	
							67 lines
						
					
					
						
							1.7 KiB
						
					
					
				| # Page Layout
 | |
| PageLayout is used to define page-specific elements across application. 
 | |
| 
 | |
| 
 | |
| ## Title
 | |
| Title is used to render page title in the PageHeader.
 | |
| 
 | |
| ```csharp
 | |
| @inject PageLayout PageLayout
 | |
| 
 | |
| @{
 | |
|     PageLayout.Title = "My Page Title";
 | |
| }
 | |
| ```
 | |
| 
 | |
| ## MenuItemName
 | |
| Indicates current selected menu item name. Menu item name should match a unique menu item name defined using the [Navigation / Menu system](../Blazor/Navigation-Menu.md). In this case, it is expected from the theme to make the menu item "active" in the main menu. 
 | |
| 
 | |
| ```csharp
 | |
| @inject PageLayout PageLayout
 | |
| 
 | |
| @code {
 | |
|     protected override async Task OnInitializedAsync()
 | |
|     {
 | |
|         PageLayout.MenuItemName = "MyProjectName.Products";
 | |
|     }
 | |
| }
 | |
| ```
 | |
| 
 | |
| Menu item name can be set on runtime too.
 | |
| 
 | |
| ```html
 | |
| @inject PageLayout PageLayout
 | |
| 
 | |
| <Button Clicked="SetCategoriesMenuAsSelected">Change Menu</Button>
 | |
| 
 | |
| @code{
 | |
|     protected void SetCategoriesMenuAsSelected()
 | |
|     {
 | |
|         PageLayout.MenuItemName = "MyProjectName.Categories";
 | |
|     }
 | |
| }
 | |
| ```
 | |
| 
 | |
| > Be aware, The [Basic Theme](../Blazor/Basic-Theme.md) currently doesn't support the selected menu item since it is not applicable to the top menu. 
 | |
| 
 | |
| ## BreadCrumbs
 | |
| BreadCrumbItems are used to render breadcrumbs in the PageHeader.
 | |
| ```csharp
 | |
| @inject PageLayout PageLayout
 | |
| 
 | |
| @{
 | |
|     PageLayout.BreadcrumbItems.Add(new BlazoriseUI.BreadcrumbItem("My Page", "/my-page")); 
 | |
| }
 | |
| ```
 | |
| 
 | |
| ## Toolbar
 | |
| ToolbarItems are used to render action toolbar items in the PageHeader.
 | |
| 
 | |
| Check out [Page Toolbar](https://docs.abp.io/en/abp/latest/UI/Blazor/Page-Header#page-toolbar)
 | |
| 
 | |
| ```csharp
 | |
| @inject PageLayout PageLayout
 | |
| @{
 | |
|     PageLayout.ToolbarItems.Add(new PageToolbars.PageToolbarItem(typeof(MyButtonComponent)));
 | |
| }
 | |
| ``` |