Hi,
We are in the process of evaluating xamRibbon for our new app.
I'm looking after providing a ScreenTip with only a header (no content), e.g. "Save (Ctrl+S)". The resulting control renders, well, poorly (displaying a big fat horizontal rule below the header).
Is there any way to display just the header (a plain ToolTip won't do, since it doesn't conform to the ribbon's theme)?
OK, found it:
<r:XamRibbonScreenTip Header="Save (Ctrl+S)" FooterSeparatorVisibility="Hidden" />
I'd say your documentation leaves much to be desired...
Another way to acheive this would be to use a ToolTip whose Style is set to the xamRibbon:ToolTipStyleKey. e.g.
I've sent along a request to our documentation group to include this in the ScreenTips topic in the help.
I tried this again, and this time around it was indeed the WPF tooltip, but with the default theme...
I'm not sure I follow. The snippet I provided doesn't use the XamRibbonScreenTip (which is the custom tooltip class that exposes header/footer related properties); it just uses a WPF tooltip with our Style resource for the tooltip to ensure its color scheme stays in sync with the other tooltips and the ribbon's theme.
Thank you for the prompt response.
I tried your suggestion, but the footer separator was still visible.