I am using ToolBar for my WPF application. As far as I understand, there is no easy way to make it float. I just want to remove the element that I don’t want to display: a few dots on the left side of the ToolBar. Are there any properties to customize the appearance of the ToolBar? Or maybe it's possible to override the ToolBar template?
you can set the attached property
ToolBarTray.IsLocked="True"
It will remove the capture (dots on the left). Hope this helps!