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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T14:00:13+00:00 2026-06-10T14:00:13+00:00

Given a random TreeViewItem from a tree, how do I retrieve the granddaddy, er

  • 0

Given a random TreeViewItem from a tree, how do I retrieve the granddaddy, er root of the node?

I am using this to highlight the root upon clicking a child item.

private void TreeViewDecode_PreviewMouseLeftButtonDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
{
     TreeViewItem treeViewItem = GetSexyGrandDaddy(e.OriginalSource as DependencyObject);
     ...
}
private static TreeViewItem GetSexyGrandDaddy(DependencyObject source)
{
        if (source != null && source is TreeViewItem)
        {
            TreeViewItem root = VisualTreeHelper.GetParent(source) as TreeViewItem;

            while (root.Parent != null)
            {
                root = root.Parent as TreeViewItem;
            }
            return root as TreeViewItem;
        }
        return null;
}

Edit: Code updated still doesn’t work

  • 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-10T14:00:15+00:00Added an answer on June 10, 2026 at 2:00 pm

    with root you mean the ‘Parent’ i guess,

    look at TreeViewItem.Parent

    UPDATE
    look at this code:

    use

        e.Source 
    

    instead of

        e.OrginalSource
    

        private void treeView1_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
        {
            TreeViewItem treeViewItem = GetSexyGrandDaddy(e.Source as DependencyObject);
            if (treeViewItem != null)
            {
                //do highlight...
            }
        }
    
        private static TreeViewItem GetSexyGrandDaddy(DependencyObject source)
        {
            TreeViewItem sugarDad = source as TreeViewItem;
            if (sugarDad != null)
            {
                while (sugarDad.Parent as TreeViewItem != null)
                    sugarDad = sugarDad.Parent as TreeViewItem;
            }
            return sugarDad;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using Groovy, I'd like to generate a random sequence of characters from a given
Given this binary tree (actually, the binary tree can be random and dynamic, this
Given five random elements, it's possible to find the median using just six comparisons.
I would like to slice random letters from a string. Given s="howdy" I would
This is an interview question. There are some random numbers given (let's say in
Given this function, I want to replace the color with a random color generator.
I have written a function that gets a given number of random records from
I need to generate random BigDecimal value from given range. How to do it
Given this input file: SectionMarker and some random text here this is the text
This is a function to generate a list of given number of random numbers

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.