I have a listbox inside a listview. on Both of them I have selectionchanged event. When I fire child control event parent control fires automatically. I need to stop this behaviour. Any hints? Thanks!

<ListView Name="listView1"
          ItemContainerStyle="{StaticResource RowStyle}" AlternationCount="2"
          SelectionChanged="listViewTask_SelectionChanged">
    <ListView.View>
        <GridView>
            <GridViewColumn Width="150">
                <GridViewColumnHeader Name="gridViewColumnHeader1"
                                      Click="SortClick" Tag="Style"
                                      Content="Style"
                                      ToolTip="Click to Sort Style"/>
            <GridViewColumn.CellTemplate>
                <DataTemplate>
                    <ListBox ScrollViewer.VerticalScrollBarVisibility="Hidden"
                             ScrollViewer.HorizontalScrollBarVisibility="Hidden"
                             BorderBrush="White"
                             SelectionChanged="listBox_SelectionChanged" 
                             Name="listbox" ItemsSource="{Binding Text}"
                             Style="{StaticResource Textblockstyle}"
                             ToolTipService.ShowDuration="360000000">

--

link|improve this question
I'm sorry my code got clipped. – WhoCares Aug 11 '11 at 22:28
<ListView Name="listView1" ItemContainerStyle="{StaticResource RowStyle}" AlternationCount="2" SelectionChanged="listViewTask_SelectionChanged"> <ListBox ScrollViewer.VerticalScrollBarVisibility="Hidden" ScrollViewer.HorizontalScrollBarVisibility="Hidden" BorderBrush="White" SelectionChanged="listBox_SelectionChanged" Name="listbox" ItemsSource="{Binding Text}" Style="{StaticResource Textblockstyle}" ToolTipService.ShowDuration="360000000"> – WhoCares Aug 11 '11 at 22:29
Read the formatting help, code needs to be indented. Then edit your answer to account for that. – H.B. Aug 11 '11 at 22:34
feedback

2 Answers

up vote 1 down vote accepted

you can use the OriginalSource property in the selection changes event

if( ((ListView)e.OriginalSource).Name.Equals("name of the listview"))
  {
   // handle the event here...

  }
link|improve this answer
Thanks shebin! That worked. – WhoCares Aug 17 '11 at 16:29
you are welcome – Shebin Aug 18 '11 at 4:32
feedback

In the inner handler set

e.Handled = true;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.