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 446183
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T21:26:43+00:00 2026-05-12T21:26:43+00:00

I’ve got a sequence of checkboxes on a C# Winform. Each checkbox can have

  • 0

I’ve got a sequence of checkboxes on a C# Winform. Each checkbox can have some options on it, which is really just another set of checkboxes that are just indented into the page a bit.

What I’m trying to achieve is when you tick one of the parent checkboxes then all it’s child checkboxes get ticked. And the opposite when a parent checkbox is unticked where all it’s child checkboxes get unticked.

Then I need to have it so that if a child checkbox get’s ticked then it ticks it’s parent, or at least ensures that the parent is ticked. Ie you can’t have a child without the parent. And if a child is unticked then if all the other children are unticked then the parent needs to be unticked.

I’m doing this with event handlers on the checkboxes but I’ve come against the problem where checking a child with the cursor then programmatically checks the parent which then programmatically checks all it’s children.

I would very much appriciate any advice on how to program this in such a way that it doesn’t have a problem like this.

  • 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-12T21:26:44+00:00Added an answer on May 12, 2026 at 9:26 pm

    Something like this should work.

        private void checkBox1_CheckedChanged(object sender, EventArgs e)
        {
            if (checkBox1.Focused)
            {
                checkBox2.Checked = checkBox1.Checked;
                checkBox3.Checked = checkBox1.Checked;
                checkBox4.Checked = checkBox1.Checked;
            }
        }
    
        private void subCheckBox_CheckedChanged(object sender, EventArgs e)
        {
            CheckBox theCheckbox = sender as CheckBox;
            if (theCheckbox.Focused)
            {
                checkBox1.Checked = checkBox2.Checked || checkBox3.Checked || checkBox4.Checked;
            }
        }
    

    Checkboxes 2, 3, and 4 are all tied to the same handler for my example.

    Hope that helps!


    Obviously, this makes some assumptions as it is just an example. I’m relying on user input (Focused property) to control the flow. There are other solutions, I’m sure.

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

Sidebar

Related Questions

No related questions found

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.