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
2010-03-22 18:15:42
Yes, thank you. Just for clear, I put my ToolBar in ToolBarTray: <ToolBarTray IsLocked="True"> <ToolBar/> </ToolBarTray>
Nike
2010-03-22 18:53:13