2

In normal WPF Button control, HorizontalContentAlignment can set the Content of the Button the left. But in RibbonButton control, there is no Content, but replaced by Label, which cannot be aligned by HorizontalContentAlignment.

How to horizontal align Label of RibbonControl? Or, is that even possible?

KMC
  • 19,548
  • 58
  • 164
  • 253

1 Answers1

0

There absolutely is a Content and HorizontalContentAlignment in RibbonButton, it inherits from Button, just check the MSDN docs.

Jakub
  • 534
  • 3
  • 17
  • 1
    the Content doesn't do anything to the RibbonButton. It behave different than the Content of a normal WPF button. – KMC Aug 03 '11 at 16:52