November 14, 2009
Here is method that you can use to access and change the Ribbon Window text-alignment which is centered by default. Method access the reference to the Ribbon control that you placed on RibbonWindow. C#: private void ChangeRibbonTitleAlignment(Ribbon ribbonControl) { RibbonContentPanel contentPanel = ribbonControl.Template.FindName("PART_RCP", ribbonControl) as RibbonContentPanel; if (contentPanel != null) { foreach (UIElement item in […]