0

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?

Hank
  • 193
  • 1
  • 10

1 Answers1

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