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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:12:03+00:00 2026-05-27T06:12:03+00:00

I have a TreeView and a ListView in my winforms application. The problem is

  • 0

I have a TreeView and a ListView in my winforms application. The problem is when user selects a node from the treeview, it will take a while for a listview to get populated (Due to heavy calculations!).

Now I want to prevent any node to be selected unless the listview has been populated. The reason is if you keep selecting the nodes very fast using mouse or by tapping or holding down arrow key, the list is not getting populated. since this is for a monitoring of data usage, I want to prevent this behaviour. What are the avilable options to do such thing?

  • 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-27T06:12:04+00:00Added an answer on May 27, 2026 at 6:12 am

    You could use a flag to track your ListView populating status and use the BeforeSelect event of the TreeView. If your ListView is still being populated have the BeforeSelect event handler cancel the event:

        private void treeView1_BeforeSelect(object sender, TreeViewCancelEventArgs e)
        {
            if (_loading)
                e.Cancel = true; 
        }
    
        bool _loading = false; 
        void treeView1_AfterSelect(object sender, TreeViewEventArgs e)
        {
            _loading = true;
            // ListView populating
            _loading = false; 
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a TreeView control in my WinForms .NET application that has multiple levels
I have a treeview which is in detail view. listview is populated with items
I have a TreeView in my Windows application. Tn this TreeView, the user can
I have a treeview control on an aspx page. The data comes from database
I have a TreeView control in a Winforms app, and basically the objective is
I currently have an application which uses a regular ListView with groups to show
I have treeview and a context menu that is shown for every node. One
I have an old VB6 application that uses an ImageList control from COMCTL32.OCX (Microsoft
I have treeview based on proxymodel based on model. So I get a table,
i have a treeview in winforms . When i double click on treenode ,its

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.