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

The Archive Base Latest Questions

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

I am making a multi-lingual (computer languages) notepad in WinForms. I have a menu

  • 0

I am making a multi-lingual (computer languages) notepad in WinForms. I have a menu strip with a toolstripmenuitem called “Languages” (Like the file, edit, view, ect.). When you click on “Languages”, there are several checkable menu items. I want to do this: when an item is clicked, it appears checked; and when the user clicks it again, it appears unchecked. How do I incorperate a compiler per language like java, c, c++, ect.

  • 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-12T22:26:09+00:00Added an answer on May 12, 2026 at 10:26 pm

    You don’t want a check, it doesn’t make sense to have more than one language checked. You need a radio button. You can get one by overriding the renderer for the menu strip. You’ll also need to handle the CheckedChanged event of the menu items so only one can be selected. This code will do the trick:

      public partial class Form1 : Form {
        private ToolStripMenuItem[] languages;
        private bool mBusy;
    
        public Form1() {
          InitializeComponent();
          languages = new ToolStripMenuItem[] { javaToolStripMenuItem, cSharpToolStripMenuItem, pythonToolStripMenuItem };
          foreach (var language in languages) {
            language.CheckOnClick = true;
            language.CheckedChanged += LanguageMenuItem_CheckedChanged;
          }
          menuStrip1.Renderer = new MyRenderer(languages);
        }
    
        void LanguageMenuItem_CheckedChanged(object sender, EventArgs e) {
          if (mBusy) return;
          mBusy = true;
          ToolStripMenuItem item = sender as ToolStripMenuItem;
          foreach (var language in languages) language.Checked = language == item;
          mBusy = false;
        }
    
        private class MyRenderer : ToolStripProfessionalRenderer {
          private ToolStripMenuItem[] languages;
          public MyRenderer(ToolStripMenuItem[] languages) { this.languages = languages; }
    
          protected override void OnRenderItemCheck(ToolStripItemImageRenderEventArgs e) {
            ToolStripMenuItem item = e.Item as ToolStripMenuItem;
            if (item != null && languages.Contains(item))
              RadioButtonRenderer.DrawRadioButton(e.Graphics, e.ImageRectangle.Location,
                System.Windows.Forms.VisualStyles.RadioButtonState.CheckedNormal);
            else
              base.OnRenderItemCheck(e);
          }
        }
      }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 222k
  • Answers 222k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I don't want to get UserGroups each time I'am getting… May 13, 2026 at 12:24 am
  • Editorial Team
    Editorial Team added an answer 4.94974746848848E-02 is actually the same thing as 0.0494974746848848 Are you… May 13, 2026 at 12:24 am
  • Editorial Team
    Editorial Team added an answer Simply divide by 1000 to lose the digits that are… May 13, 2026 at 12:24 am

Related Questions

I am developing a multi-lingual site with Plone. I want to have one language
I am working on a multilingual web application. I'm wondering how do i design
Currently I am making a mini music player / organizer for myself. However, when
I am making a C++ program that checks if given aray is a latin
I'm writing a multi-threaded Java web crawler. From what I understand of the web,

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.