Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WPF ToolBar: how to remove grip (dots on the left)

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?

like image 492
Nike Avatar asked Mar 22 '10 16:03

Nike


1 Answers

you can set attached property

ToolBarTray.IsLocked="True"

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

like image 160
viky Avatar answered Nov 08 '22 12:11

viky