InsertBarAction Class
In This Article
Inserts a bar at a specific position within the BarManager.Bars collection.
Namespace: DevExpress.Xpf.Bars
Assembly: DevExpress.Xpf.Core.v14.2.dll
#Declaration
#Remarks
This action inserts InsertBarAction.Bar at a specific position (InsertBarAction.BarIndex) within the BarManager.Bars collection.
The InsertBarAction object can be used as follows:
<dxb:InsertBarAction BarIndex="3">
<dxb:InsertBarAction.Bar>
<dxb:Bar x:Name="myBar">
<dxb:Bar.DockInfo>
<dxb:BarDockInfo ContainerType="Left"/>
</dxb:Bar.DockInfo>
</dxb:Bar>
</dxb:InsertBarAction.Bar>
</dxb:InsertBarAction>
The InsertBarAction.BarIndex property is an attached property. It can be set for a Bar object when the bar acts as an action:
<!--Create a bar and add it at the first position in the BarManager.Bars collection-->
<dxb:BarManagerActionContainer>
<dxb:Bar x:Name="barStatusBar" dxb:InsertBarAction.BarIndex="0">
<dxb:Bar.DockInfo>
<dxb:BarDockInfo ContainerType="Bottom"/>
</dxb:Bar.DockInfo>
</dxb:Bar>
<!--...-->
</dxb:BarManagerActionContainer>
See Customizing Bars via Actions to learn more.
#Inheritance
See Also