Hi,
Is it possible to add a help button to the far right of the ribbon tabs (as in the MS Office ribbon bar)?
Thanks,Gary
Hi Gary,
I was also looking for the same solution long time back for one of my project. I have not found any direct solution. Although there is a workaround and it has worked for me.
Take a canvas and put the help image in that. You can place the canvas at any place by setting the margin.
<Canvas Height="23" HorizontalAlignment="Right" Margin="9,30,2,0" Name="canvashelp" VerticalAlignment="Top" Width="25" Background="#E5EBF4">
<Image Source="help.jpg"></Image>
</Canvas>
Write the above code outside the Ribbon code. You can change the margin according to your requirement.
Hope this works for you.
Thank,Sumit