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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T14:36:28+00:00 2026-05-16T14:36:28+00:00

I have a TreeView that is binded through a HierarchicalDataTemplate <HierarchicalDataTemplate x:Key=HierachrTree DataType={x:Type src:Ordner}

  • 0

I have a TreeView that is binded through a HierarchicalDataTemplate

        <HierarchicalDataTemplate x:Key="HierachrTree" DataType="{x:Type src:Ordner}" ItemsSource="{Binding UnterOrdner}">
                <TextBlock Text="{Binding OrdnerName}"/>
    </HierarchicalDataTemplate>

Thats my TreeView:

<TreeView Name="DokumentBrowser" ItemTemplate="{StaticResource HierachrTree}"

Now I want to get the first node and set the IsExpanded Property to false.

I tried it this way

        ItemCollection ic = DokumentBrowser.Items;
        TreeViewItem tvi = (TreeViewItem)ic.GetItemAt(0);
        tvi.IsExpanded = false;

but i can’t cast the Object back to a TreeViewItem to get the IsExpanded Property.

  • 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-16T14:36:28+00:00Added an answer on May 16, 2026 at 2:36 pm

    TreeView.Items is a collection of the data objects, not of the TreeViewItems. You can use the ItemContainerGenerator to get the mapping from data objects to the TreeViewItems that are the containers.

    TreeViewItem tvi =
        (TreeViewItem) DokumentBrowser.ItemContainerGenerator.ContainerFromIndex(0);
    

    If you start with a data object instead of the index then you can use ContainerFromItem:

    TreeViewItem tvi =
        (TreeViewItem) DokumentBrowser.ItemContainerGenerator.ContainerFromItem(
            DokumentBrowser.Items.GetItemAt(0));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a treeview with checkboxes for each item using a DataTemplate. <TreeView ItemsSource={Binding}>
I have a binded treeview that displays one of the properties (namely, the displayname)
I currently have a treeview that displays data using a hierarchicaldatatemplate and when the
I have a treeview that contains icons. The icons are ugly. and by ugly
I have a TreeView that launches a new window when each of its TreeViewItems
I have a treeview that is bound to a collection and each item in
I have a TreeView that is bound to a XmlDataSource control. I've added some
I have a TreeView that permits the user to select different items. The display
So I have a TreeView that starts off empty. Sequence of events is as
I have a treeview control that functions like a folder browser. Because loading the

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.