Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6025611
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T04:19:32+00:00 2026-05-23T04:19:32+00:00

Since TabStop does not work on RadioButtons (see linked question), how can I prevent

  • 0

Since TabStop does not work on RadioButtons (see linked question), how can I prevent a (WinForm) RadioButton from being tabbed into, but also allow the user to click on the RadioButton, without the tab focus jumping somewhere else.

I’ve read this and so I thought the following would work:

        rbFMV.Enter += (s, e) => focusFirstWorkflowButton();
        rbFMV.MouseUp += (s, e) => rbFMV.Focus();

But it doesn’t. When I click on the RB, the focus jumps away, and does not come back on Mouse Up.

Any dirty workarounds out there?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T04:19:33+00:00Added an answer on May 23, 2026 at 4:19 am

    Try something like this:

    Set TabStop property of the radiobuttons to “false” in the form’s constructor. Then attach the following events handlers to the CheckedChanged events of the radiobuttons.

    public partial class Form1 : Form
    {        
        public Form1()
        {
            InitializeComponent();
            radioButton1.TabStop = false;
            radioButton2.TabStop = false;
        }
    
        private void radioButton1_CheckedChanged(object sender, EventArgs e)
        {
            radioButton1.TabStop = false;
            radioButton2.TabStop = false;
        }
    
        private void radioButton2_CheckedChanged(object sender, EventArgs e)
        {
            radioButton1.TabStop = false;
            radioButton2.TabStop = false;
        }
    
    }
    

    You can attach these event handlers using lambda aswell, as you have shown in your question.

    But the important point here is that whenever a radiobutton is checked/unchecked, it’s tabstop property is also modified simultaneously. Hence you need to set it to false everytime that event occurs.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

since the Sitemap of VS2008 does not work with MVC, I found MVC Sitemap
Since Python does not provide left/right versions of its comparison operators, how does it
Since we can access the private data member of base class in the derived
Since I'm used to developing in Java, I'm familiar with what files get generated
since every assignment to a variable with a different object increases its retain count
Since the display resolution is different, I wonder if there is an official guide
since last four years i had been coding in c/c++, but those lenthy programs
Since POST request is separate, I have to do all the stuff I already
Since iPhone 4 do takes the application to background thread, Is there a way
Since the SQL query box of an SSIS Lookup transformation is almost unusable, I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.