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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:22:35+00:00 2026-05-26T23:22:35+00:00

I have a TreeView and a multiline TextBox. When user clicks on a node

  • 0

I have a TreeView and a multiline TextBox. When user clicks on a node in the treeview, it’s Text property will be added to the TextBox.

By default, everytime that a node is clicked (or hitting enter when treeview has focus and that sort of stuff…), the TextBox will be cleared and the new Text of the selected node will be added.

But I am looking for a way, that when user holds a modifier key (ctrl or shift…) the textbox will not be cleared and the newly selected node’s text will be added to the textbox without clearing anything.

I am thinking about having a boolean, and whenever the modifier key is pressed, it changes to false and when the key is released it gets back to true.

public bool ClearBox = true;

Later:

private void AddText(string text)
{
   if(ClearBox == true) //by default it is true
   {
      textBox.Clear();
      textBox.Text = text;
   }
   else //user is holding a modifier key so the ClearBox is false now
   {
      textBox += Environment.NewLine + text;
   }
}

Node select event:

private void treeView_AfterSelect(object sender, TreeViewEventArgs e)
{
   //How to check here if a modifire key is being pressed (holded) ?
   this.AddText(treeView.SelectedNode.Text);
}
  • 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-26T23:22:35+00:00Added an answer on May 26, 2026 at 11:22 pm

    You can ask the property ModifierKeys of the form which modifier key is pressed. In your code you would have to do like this:

    private void treeView_AfterSelect(object sender, TreeViewEventArgs e) 
    {
        if (ModifierKeys == Keys.ShiftKey)
        {
            this.AddText(treeView.SelectedNode.Text); 
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a TreeView, which contains nodes. When a user clicks on a node,
I have treeview and a context menu that is shown for every node. One
I have a TreeView with user-editable nodes. I like to use the node caption
I have a treeview inplemented in CSS, when a user clicks a folder on
I have a TreeView and a Multiline Textbox together on the same form in
I have a TreeView with some nodes inside of it. Whenever the user clicks
Is it possible (by using the stock c# TreeView) to have Multiline TreeNodes? Also,
I have a treeview control in a Windows Forms project that has checkboxes turned
I have a TreeView control in my WinForms .NET application that has multiple levels
I have a TreeView that launches a new window when each of its TreeViewItems

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.