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 yesterday suddenly my Eclipse does not work anymore. The error is Failed to
Since hist() of the base R does not report percentages (and the freq=FALSE) does
Since i'm not strong in asp.net, probably my question will sound silly. I've got
Since I am not getting anywhere with my previous question , I would like
Since PEAR attempts to get ConsoleTools from components.ez.no, which is not available anymore, how
Since Graduating from a very small school in 2006 with a badly shaped &
Since Rails is not multithreaded (yet), it seems like a threaded web framework would
Since OpenGL ES 2.0 is not backward-compatible to OpenGL ES 1.x because of it's
Python's len() and padding functions like string.ljust() are not tabstop-aware, i.e. they treat '\t'
Since the pages are stored in address_space within each inode, how does the background

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.