views:

243

answers:

1

I use ToolBar for my WPF application. As I understand, there is no easy way to make it floating. I just want to remove element which I don't want to be displayed: several dots in the left side of ToolBar. Is there any Properties to customize view of ToolBar? Or, maybe, it's possible to redefine a ToolBar Template?

A: 

you can set attached property

ToolBarTray.IsLocked="True"

It will remove the grip(dots on the left). Hope this helps!!

viky
Yes, thank you. Just for clear, I put my ToolBar in ToolBarTray: <ToolBarTray IsLocked="True"> <ToolBar/> </ToolBarTray>
Nike