Back to Devexpress

DxToolbarItem.Items Property

blazor-devexpress-dot-blazor-dot-dxtoolbaritem-2caf90da.md

latest2.3 KB
Original Source

DxToolbarItem.Items Property

Specifies a collection of the current item’s child items.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[Parameter]
public RenderFragment Items { get; set; }

Property Value

TypeDescription
RenderFragment

A UI fragment that the browser renders in the corresponding component’s markup.

|

Remarks

Use the Items property to specify the collection of child items of the current item. This collection contains only the items at the next level. To specify items further down the Toolbar hierarchy, use the Items property of a child item.

You can use the Items property to specify the items of a Toolbar’s root level.

razor
<div class="card p-2">
  <DxToolbar>
      <DxToolbarItem GroupName="align" IconCssClass="oi oi-align-left" />
      <DxToolbarItem GroupName="align" IconCssClass="oi oi-align-center" />
      <DxToolbarItem GroupName="align" IconCssClass="oi oi-align-right" />
      <DxToolbarItem Text="Font Style" BeginGroup="true">
          <Items>
              <DxToolbarItem IconCssClass="oi oi-bold" 
                             Text="Bold" 
                             GroupName="bold" />
              <DxToolbarItem IconCssClass="oi oi-italic"  
                             Text="Italic" 
                             GroupName="italic" />
              <DxToolbarItem IconCssClass="oi oi-underline" 
                             Text="Underline" 
                             GroupName="underline" />
          </Items>
      </DxToolbarItem>
  </DxToolbar>
</div>

Run Demo: Toolbar - Checked Items and Groups

See Also

DxToolbarItem Class

DxToolbarItem Members

DevExpress.Blazor Namespace