I don't see a ToolBarItem class in msdn, and I notice that GetContainerForItemOverride() is not called on my derived ToolBar class. Anyone know how to customize ToolBarItems?
Asked
Active
Viewed 153 times
1 Answers
1
A Toolbar
in WPF derives from ItemsControl
. This means you can add arbitrary items to your toolbar, you do not need to derive from a specific class (other than UIElement
).

Bas
- 26,772
- 8
- 53
- 86