Hi *,
is there a way to add a help button between the title bar and the ribbon? If you look at Office 2007, there's an help icon on the right hand side.
thx
fabian
Currently there is no built in support for this but you could provide a modified template/style for the XamRibbon.RibbonTabControlStyleKey. You may also want to submit a request for adding this as part of the product - http://devcenter.infragistics.com/Protected/RequestFeature.aspx
Hy Andrew.
Do you know if this feature it's implemented in Infragistics 2008 vol.2 or if it will be implemented in later versions, maybe hotfixes?
Thanks.
Nico
Hi,
I've found the easiest solution to be:
1. Copy in your window resources the RibbonTabControlStyle from RibbonGeneric.xaml
2. In the copied style add a setter for the PostTabItemContentTemplate, for example:
<Setter Property="PostTabItemContentTemplate">
<Setter.Value>
<DataTemplate>
<Button Background="Transparent" BorderBrush="Transparent">
<Image Source="help.png" Width="16" Height="16"/>
</DataTemplate>
</Setter.Value>
</Setter>