I'm trying to style the toolbar to look like a Visual Studio panel toolbar, but I can't get rid of the round corners and overflow button.
This is the code I currently have:
<UserControl ...>
<DockPanel>
<ToolBar DockPanel.Dock="Top">
...
</ToolBar>
</DockPanel>
I've tried putting the toolbar inside a ToolBarTray and set the ToolBarTray.IsLocked to true which removed the grip, but that's it.