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

  • Home
  • SEARCH
  • 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 918049
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T18:18:30+00:00 2026-05-15T18:18:30+00:00

My project is .NET/WinForms. I have a list view which is always filled with

  • 0

My project is .NET/WinForms.

I have a list view which is always filled with items. I would like it to have selection always. However, if I click on an empty area below list view items, it looses selection.

The list has multiple selection = true and hide selection = false.

  • 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-15T18:18:31+00:00Added an answer on May 15, 2026 at 6:18 pm

    You need to prevent the native control from seeing the mouse click so it won’t unselect an item. Add a new class to your project and paste the code shown below. Compile. Drop it from the top of the toolbox onto your form, replacing the existing one.

    using System;
    using System.Drawing;
    using System.Windows.Forms;
    
    class MyListView : ListView {
        protected override void WndProc(ref Message m) {
            // Swallow mouse messages that are not in the client area
            if (m.Msg >= 0x201 && m.Msg <= 0x209) {
                Point pos = new Point(m.LParam.ToInt32());
                var hit = this.HitTest(pos);
                switch (hit.Location) {
                    case ListViewHitTestLocations.AboveClientArea :
                    case ListViewHitTestLocations.BelowClientArea :
                    case ListViewHitTestLocations.LeftOfClientArea :
                    case ListViewHitTestLocations.RightOfClientArea :
                    case ListViewHitTestLocations.None :
                        return;
                }
            }
            base.WndProc(ref m);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a website (ASP.NET) and some winforms(.Net 2.0) for a project (written in
I have a .NET 3.5 WinForms project that uses several 3rd party controls and
I have created a setup project in VS2008. My WinForms app uses .NET 2.0,
In a .NET project, say you have a configuration setting - like a connection
I have a .NET project which references another assembly that is built outside of
I have a CC.NET project configured to call a common NAnt build file, which
I have a .net project that has a web reference to a service. I
I have a .net project (MySolution.Common) that uses the app.config. I am using the
I was in the process of converting a VS2003 project (.NET 1.1) to VS2008
In my VB.net project I created a custom cursor (Window.cur). How can I assign

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.