ToolBarTray.ToolBars Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the collection of ToolBar elements in the ToolBarTray.
public:
property System::Collections::ObjectModel::Collection<System::Windows::Controls::ToolBar ^> ^ ToolBars { System::Collections::ObjectModel::Collection<System::Windows::Controls::ToolBar ^> ^ get(); };
public System.Collections.ObjectModel.Collection<System.Windows.Controls.ToolBar> ToolBars { get; }
member this.ToolBars : System.Collections.ObjectModel.Collection<System.Windows.Controls.ToolBar>
Public ReadOnly Property ToolBars As Collection(Of ToolBar)
Property Value
A collection of ToolBar objects.
Examples
The following example shows how to use the ToolBars property to add a ToolBar to a ToolBarTray.
tbartray.ToolBars.Add(tbar);
tbartray.ToolBars.Add(tbar1);
tbartray.ToolBars.Add(tbar)
tbartray.ToolBars.Add(tbar1)
Remarks
You can add ToolBar objects to a ToolBarTray by using XAML, but do not use object element syntax. That is, do not explicitly specify the Collection<T> object. XAML does not support declaring generic types.
XAML Property Element Usage
<object>
OneOrMoreToolBarElements
</object>
XAML Values
OneOrMoreToolBarElements
One or more ToolBar objects.