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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T05:14:27+00:00 2026-06-07T05:14:27+00:00

I have a ListBox with SelectionMode = MultiExtended . I want the default behavior

  • 0

I have a ListBox with SelectionMode = MultiExtended. I want the default behavior for the ListBox to be “append”. In other words, the behavior you get when holding down the control key should be the default, passive functionality for the ListBox.

How would I do this? Do I need to subscribe to the “Mouse Down” and “Key Down” events manually? Is there a setting I’m missing?

Thanks.

  • 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-06-07T05:14:29+00:00Added an answer on June 7, 2026 at 5:14 am

    Ugly solution but the best I could do.

        [DllImport("user32.dll", SetLastError = true)]
        static extern void keybd_event(byte bVk, byte bScan, int dwFlags, int dwExtraInfo);
    
        public const byte KEYEVENTF_KEYUP = 0x02;
        public const int VK_CONTROL = 0x11;
    
        private void listBox1_MouseEnter(object sender, EventArgs e)
        {
            keybd_event(VK_CONTROL, (byte)0, 0, 0);
        }
    
        private void listBox1_MouseLeave(object sender, EventArgs e)
        {
            keybd_event(VK_CONTROL, (byte)0, KEYEVENTF_KEYUP, 0);
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Winforms' ListBox appears to have a strange behavior. When I set the SelectionMode to
I have a listbox control on winform and same is Single Items SelectionMode OR
I have a listbox that has its SelectionMode property set to Multiple. Is it
I have a ListBox that is a drop target of items from other sources.
I have a ListBox which is made up of Grid Items in Multiple SelectionMode
I have a DataTemplate: <Style x:Key=SalesmanDestinyReportListBoxStyle TargetType=ListBox> <Setter Property=ItemsPanel> <Setter.Value> <ItemsPanelTemplate> <StackPanel Orientation=Horizontal />
I have an ASP ListBox that has the SelectionMode set to "Multiple". Is there
I have a list box in my aspx page: <asp:ListBox ID=lstTreatmentProvider runat=server SelectionMode=Multiple Width=175px
I have a databound ListBox that is behaving strangely. The ListBox's SelectionMode property is
I have a webpart and I want to select mulitple items in a listbox,pretty

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.