Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
475
UltraRadio button
posted

Can anyone tell me how to set a Short cut for ultraradio button? I tried using & sign in front of the text but it did not work. I also set the UseMnemonic Property to true but it did not help...Any suggestions???

Parents
No Data
Reply
  • 469350
    Suggested Answer
    Offline posted

    Hi,

    There's no UltraRadioButton control that I know of. I assume you are talking about UltraOptionSet.

    So I tested this out with the following code:


                this.ultraOptionSet1.UseMnemonics = true;
                this.ultraOptionSet1.Items.Clear();
                this.ultraOptionSet1.Items.Add("Apple", "&Apple");
                this.ultraOptionSet1.Items.Add("Banana", "&Banana");
                this.ultraOptionSet1.Items.Add("Cherry", "&Cherry");

    This seems to work fine for me... but the mnemonics do not display immediately when I run the application. They only display when I press the Alt key on my keyboard. This is default behavior in Windows Vista and I get the same behavior with any control, including the inbox button.

    So if you are running Vista, perhaps that's why you are not seeing the mnemonics.

     

Children
No Data