Quick access toolbar "Showing below the Ribbon" results in a Black Rectangle. Ribbon height not set. (When set then minimizing the Ribbon also results a black rectangle.)
See video: http://screencast.com/t/n2pjv98S7ZCV
Thanks in advance
Hi Justin,
Thank you for your post. I have been looking into your issue and in a simple application(RibbonSimpleApp.zip) that contains only XamRibbon it is not reproducible. Is there any chance to modify my application or attach your own one in order to be able to reproduce the issue on my side?
Looking forward to hearing from you.
Hi Yanko,
Unfortunatelly I've signed NDA and the original project is confidental.
Alternatively: in case I can hide the menu item "Showing below the Ribbon" the problem solved, as we actually do not need this functionality. So please let me know how can I hide this. Please note: We still need the quick access toolbar, and the other menu item on it: "Minimize the Ribbon" so hiding the whole Quick access toolbar is not a solution. (also a save button is there).
Thank you for your feedback. I have been looking into your requirement and in order to remove the 'Show Below the Ribbon' item, you could apply the following style:
<Style TargetType="{x:Type igRibbon:ToolMenuItem}">
<Style.Triggers>
<Trigger Property="Header" Value="Show Below the Ribbon">
<Setter Property="Visibility" Value="Collapsed"/>
</Trigger>
</Style.Triggers>
</Style>
Let me know, if you need any further assistance on this matter.
Thanks for your answer.
Could you help me out where to insert this style definition, and how and where to apply it?
Thank you for your feedback. You can apply this style by adding it to the resources of the XamRibbon like e.g.:
<igRibbon:XamRibbon>
<igRibbon:XamRibbon.Resources>
</igRibbon:XamRibbon.Resources>
<igRibbon:XamRibbon.ApplicationMenu>
<igRibbon:ApplicationMenu/>
</igRibbon:XamRibbon.ApplicationMenu>
<igRibbon:XamRibbon.QuickAccessToolbar>
<igRibbon:QuickAccessToolbar/>
</igRibbon:XamRibbon.QuickAccessToolbar>
</igRibbon:XamRibbon>
There are several ways to apply a style on a control. For more information please look into the following MSDN link:
http://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh465381.aspx