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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T06:40:36+00:00 2026-05-13T06:40:36+00:00

I have searched on here and have not found exactly what I am looking

  • 0

I have searched on here and have not found exactly what I am looking for.

I am using a ContextMenuStrip, within this there is one menu item that is a checked/unchecked item. The structure is the following:

Top Level: Settings
Middle Level: Processing
Bottom Level: Manual processing

I can not find a way to access the Bottom level item, to set it as checked or unchecked.

Can anyone please help?

  • 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-13T06:40:37+00:00Added an answer on May 13, 2026 at 6:40 am

    Not sure I’m following the question. Do you know the name of the “Bottom level item”? If so just reference it by name:

    bottomLevelMenuItem.Checked = true;
    

    If you don’t know the name you can loop through the Items or DropDownItems (depending on the MenuItem type) control collection to find the one you want.

    foreach (ToolStripMenuItem stripItemCollection in MenuStrip.Items)
    {
        ...
    }
    

    Edit:

    Correct, ToolStripItem does not have a checked property. It is a base class for many tool strip objects, some of which do not support checking. In this case you are probably dealing with ToolStripMenuItems which do have a checked property.

    Try this:

    ToolStripMenuItem menuItem = this.cmuSystemTray.Items["TLSETTINGS"] as ToolStripMenuItem;
    if (menuItem != null)
    {
        menuItem.Checked = true;
    }
    

    Again though each Control (ToolStripMenuItem) has a name associated with it so it would be easier to use the original variable rather than going through the Items property of the context menu strip.

    TLSETTINGS.Checked = true; // Assuming TLSETTINGS is the name
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have searched this on the internet, but have found no solution... Here is
I have searched the forum and have not found an issue similar to this.
I have searched and found a previous answer for this question here . The
I've searched here and online,. and have not found clear PHP examples for taking
I have searched this site top to bottom yet have not found a single
I have searched for this answer and have not found it. I have music
I have searched here, GooBingHooVista'd the world and read this related question for VS
I have searched the web and have found no definitive solution, so here goes:
I have searched for this, and i found that for api less than 12,
I have searched here and found the assertion that no single application may occupy

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.