Click here to Skip to main content
15,896,478 members

how to show selected node custom treeview in wpf

manoj.dabs asked:

Open original thread
I have custom treeview in wpf


<treeview grid.row="0" grid.column="0" name="ApplicationTree" datacontext="{Binding}" itemssource="{Binding Master}" itemtemplate="{StaticResource MasterTemplate}" borderbrush="Black" borderthickness="3,3,3,3" height="500">

<datatemplate x:key="DetailTemplate" xmlns:x="#unknown">
            <canvas height="30">
                <Image Source="{Binding Imageurl}" Width="25" Height="25" VerticalAlignment="Center"/>
                <Label Name="lblDetailTree"  Content="{Binding Info}" FontSize="15" Canvas.Top="0" Canvas.Left="30" MouseDown="lblDetailTree_MouseDown" MouseUp="lblDetailTree_MouseUp" />
            </canvas>
        </datatemplate>

private void lblDetailTree_MouseUp(object sender, MouseButtonEventArgs e)
        {
            System.Windows.Controls.Label lblnode = (System.Windows.Controls.Label)sender;
            lblnode.Background = Brushes.CadetBlue;
        }


</treeview>


when i select node, i get selected node label,then i change color of selected node & its changing..but when i selected another node then i want to change color of previously selected node back to its old style.

need help asap..thanks in advance.
Tags: C# 3.5

Plain Text
ASM
ASP
ASP.NET
BASIC
BAT
C#
C++
COBOL
CoffeeScript
CSS
Dart
dbase
F#
FORTRAN
HTML
Java
Javascript
Kotlin
Lua
MIDL
MSIL
ObjectiveC
Pascal
PERL
PHP
PowerShell
Python
Razor
Ruby
Scala
Shell
SLN
SQL
Swift
T4
Terminal
TypeScript
VB
VBScript
XML
YAML

Preview



When answering a question please:
  1. Read the question carefully.
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  3. If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  4. Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.
Please note that all posts will be submitted under the http://www.codeproject.com/info/cpol10.aspx.



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900