Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Elegant Ribbon Tech Support » TabControl KeyTip Issues Collapse All
Subject Author Date
Paddy Dec 29, 2010 - 2:31 AM

Hi,

I am using Ribbon v3.7.



I am using the TabControl with many tabs.  Each tab has different content.  I am using the KeyTip property for the controls on the relevant TabPage to make it easier for the end user to navigate the form without the use of a mouse.


This is the problem I am encountering.... when I am on ANY TabPage and I hit the ALT key on the keyboard to show the KeyTips for the controls, ALL KeyTips for the entire form display.  I suppose I could set the KeyTip property when the TabPage tab is clicked on by the end user but would prefer not to do that if at all possible.


Any idea of what is going on?

The screen shot of the form is here: dl.dropbox.com/u/5335929/ScreenShotKeyTip.png


Thanks!

Technical Support Dec 29, 2010 - 6:20 AM

You should also assign keytips for tab pages in this way:

tabPage1.KeyTip = "A"
This should resolve the issue.

Paddy Dec 29, 2010 - 4:57 PM

Yes, it fixed the issue.  Thanks.