I want to modify the the default style of the menu tool and the button tool.
I need the border of the tools to be visible, background color is to be same as default WPF button.
And on mouse over color to be light blue (same as WPF button) instead of yellow.
How can I modify these properties.
As it can be seen in the picture, borders are only visible when mouse over, and I want to change the yellow color.
Hello and thank you for contacting Infrgistics. This will require style changes to our default files for the ribbon. You can find the default files here.
C:\Program Files (x86)\Infragistics\20xx.x\WPF\DefaultStyles\Ribbon
I am sorry, but I am not that good in this area, I found this under the menu tool style and change the border thickness to 1,1,1,1 but nothing changes. Is that the right property and right file?
Line 1372 ,version 2018.1. Also which property has the color for mouseover?
<!-- JJD 12/4/07 - BR28873 --> <!-- Added Border style for menu item icon area background --> <Style x:Key="MenuItem_IconAreaBackground" TargetType="{x:Type Border}"> <Setter Property="SnapsToDevicePixels" Value="True" /> <Setter Property="Background" Value="{DynamicResource {x:Static igRibbon:RibbonBrushKeys.MenuToolPresenterLeftColumnFillKey}}" /> <Setter Property="BorderBrush" Value="{DynamicResource {x:Static igRibbon:RibbonBrushKeys.GalleryItemGroupCaptionStrokeFillKey}}" /> <Setter Property="BorderThickness" Value="1,1,1,1" /> </Style>