Hi,
I've been using XamRibbon for years and it always has this issue with cutting off the bottom of button's caption, see attached for example. The letter 'g' in word ‘Mapping' was cut off. Is there any way to fix this? Thanks.
Hi Daniel,
Which version of the ribbon are you using? 12.1? 12.2?
I've tried reproducing this in my own sample but I don't see any clipping. In your screenshot I see that you have something else underneath that button, the "to Speed" text. Is that another button? Can you send me the XAML for that RibbonGroup where the "Ribbon Mapping" button is located?
Rob, I'm using 12.2 now, but the same thing happened from 11.2. The "something else underneath" is the ribbon group caption. Following is my XAML for this group, we didn't do anything special here.
<igRibbon:RibbonGroup Caption="{x:Static res:MyProductShellRes.GetUpToSpeed}" Margin="5,0,0,0"> <igRibbon:RibbonGroup.Variants> <igRibbon:GroupVariant Priority="70" ResizeAction="ReduceImageAndTextNormalTools"/> </igRibbon:RibbonGroup.Variants> <igRibbon:ButtonTool Id="WhatsNew" Name="buttonWhatsNew" Caption="{x:Static res:MyProductShellRes.GetUpToSpeedHeader}" Command="{Binding ShowWhatsNewCommand}" LargeImage="{x:Static imageLocal:ImageResources.WhatsNew32}" igRibbon:RibbonGroup.MaximumSize="ImageAndTextLarge"> <igRibbon:ButtonTool.ToolTip> <igRibbon:XamRibbonScreenTip Header="{x:Static res:MyProductShellRes.GetUpToSpeedHeader}" Content="{x:Static res:MyProductShellRes.GetUpToSpeedDes}" FooterSeparatorVisibility="Hidden" /> </igRibbon:ButtonTool.ToolTip> </igRibbon:ButtonTool>
<igRibbon:ButtonTool Id="RibbonMapping" Name="buttonRibbonMapping" Caption="{x:Static res:MyProductShellRes.RibbonMapping}" Command="{Binding ShowRibbonMappingCommand}" LargeImage="{x:Static imageLocal:ImageResources.RibbonMapping32}" igRibbon:RibbonGroup.MaximumSize="ImageAndTextLarge"> <igRibbon:ButtonTool.ToolTip> <igRibbon:XamRibbonScreenTip Header="{x:Static res:MyProductShellRes.RibbonMapping}" Content="{x:Static res:MyProductShellRes.RibbonMappingDes}" FooterSeparatorVisibility="Hidden" /> </igRibbon:ButtonTool.ToolTip> </igRibbon:ButtonTool>
</igRibbon:RibbonGroup>