Tree view
-
How can i clear out arrows in tree view in expanded elements? Because shows arrows and text, but i wanna show only text.... Help, plz... :)
ISQ 469907496
-
How can i clear out arrows in tree view in expanded elements? Because shows arrows and text, but i wanna show only text.... Help, plz... :)
ISQ 469907496
You will need to edit the control templates. This very easy in Blend because Blend returns back a copy of the current control template with one click of the mouse. There are also free videos on the Expression Blend site that walk you through editing a control template. Here are two resources that will get you started. http://www.codeproject.com/KB/WPF/CustomTreeViewLayout.aspx[^] http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2791439&SiteID=1[^] FYI: The control template you need is nested inside the TreeViewItem and is actually a style for a
ToggleButton
. Question: If you clear out the arrow, how will the user know that they can click a element and see more data. That is the purpose of the little, arrow.Cheers, Karl
My Blog | Mole's Home Page | How To Create Screen Capture Videos For Your ArticlesJust a grain of sand on the worlds beaches.
-
You will need to edit the control templates. This very easy in Blend because Blend returns back a copy of the current control template with one click of the mouse. There are also free videos on the Expression Blend site that walk you through editing a control template. Here are two resources that will get you started. http://www.codeproject.com/KB/WPF/CustomTreeViewLayout.aspx[^] http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2791439&SiteID=1[^] FYI: The control template you need is nested inside the TreeViewItem and is actually a style for a
ToggleButton
. Question: If you clear out the arrow, how will the user know that they can click a element and see more data. That is the purpose of the little, arrow.Cheers, Karl
My Blog | Mole's Home Page | How To Create Screen Capture Videos For Your ArticlesJust a grain of sand on the worlds beaches.
// FYI: The control template you need is nested inside the TreeViewItem and is actually a style for a ToggleButton. This is that! Thanks! I just didn't know what reply for this!
ISQ 469907496