Skip to main content

DxToolbarItem.ChildContent Property

Specifies Toolbar item content.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public RenderFragment<IToolbarItemInfo> ChildContent { get; set; }

Property Value

Type Description
RenderFragment<IToolbarItemInfo>

Content markup.

Remarks

The ChildContent component parameter can store custom component content that does not belong to other component’s RenderFragment properties as shown below:

<DxToolbar>
    <Items>
        <DxToolbarItem>
            <ChildContent>
                This is an item with ChildContent
            </ChildContent>
        </DxToolbarItem>
    </Items>
</DxToolbar>

Item with child content

You can omit the <ChildContent> tag and specify the markup directly in the <DxToolbarItem> tag:

<DxToolbar>
    <Items>
        <DxToolbarItem>
            This is an item with ChildContent
        </DxToolbarItem>
    </Items>
</DxToolbar>
See Also