Declined
Last Updated: 13 Jan 2015 17:01 by Alfredo
ADMIN
Tina Stancheva
Created on: 25 Apr 2012 07:00
Category: RibbonView
Type: Feature Request
2
RibbonView: Expose a property to control the Visibility of the RibbonWindow icon separator
Expose a property to control the Visibility of the RibbonWindow icon separator

Declined: The Icon separator could removed once the Windows is loaded, like follows: void MainWindow_Loaded(object sender, RoutedEventArgs e) { var iconPanel = this.ChildrenOfType<FrameworkElement>().Where(x => x.Name == "IconPanel").FirstOrDefault() as StackPanel; if (iconPanel != null) { var border = iconPanel.ChildrenOfType<Border>().FirstOrDefault(); if (border != null) { border.Visibility = System.Windows.Visibility.Collapsed; } } }
1 comment
Alfredo
Posted on: 25 Apr 2012 09:01
This issue is in WPF