Hi,
Background
I'm converting our application from Ribbon to Bars.
Problem
While changing to use the BarCheckBox in one particular place it seems as though we can no longer suppress the Label by setting Label="". (We actually wrap our own label on the other side of the control.) The control is now displayed with the Command name as the label. Presumably some code is using "IsNullOrEmpty" to decide whether to automatically generate a Label?
Question
Is there another way of suppressing the automatic Label generation?
I've tried using the Unicode zero width space for the Label but WPF still renders it as a visible space. It is possible that changing some rendering mode might fix that but I'd rather not fiddle with that if I don't have to.
Thanks in advance,
__Jason