blazor-devexpress-dot-blazor-dot-dxmenu-6ba2a775.md
Specifies the template for the menu title.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[Parameter]
public RenderFragment<object> TitleTemplate { get; set; }
| Type | Description |
|---|---|
| RenderFragment<Object> |
The template content.
|
The TitleTemplate property specifies the template for the menu title. You can use the template’s context parameter to get the menu’s title. The following code snippet uses this parameter to specify the alt attribute for the image.
<div class="card w-50">
<DxMenu Title="DevExpress Logo">
<TitleTemplate>
</TitleTemplate>
<Items>
<DxMenuItem Text="Products" />
<DxMenuItem Text="Support" />
<DxMenuItem Text="Documentation" />
<DxMenuItem Text="Demos" />
</Items>
</DxMenu>
</div>
See Also