Halting event routing with Handled : Event « Windows Presentation Foundation « VB.Net






Halting event routing with Handled

Halting event routing with Handled
    

<Window x:Class="WpfApplication1.HaltingEvents"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Halting Events" Height="300" Width="300">
  <Grid HorizontalAlignment="Center" VerticalAlignment="Center">
    <Button PreviewMouseDown="PreviewMouseDownButton"
    MouseDown="MouseDownButton">

      <Grid PreviewMouseDown="PreviewMouseDownGrid"
            MouseDown="MouseDownGrid">
        <Grid.ColumnDefinitions>
          <ColumnDefinition />
          <ColumnDefinition />
        </Grid.ColumnDefinitions>

        <Canvas PreviewMouseDown="PreviewMouseDownCanvas"
                MouseDown="ButtonDownCanvas"
                Width="20" Height="18" VerticalAlignment="Center">

          <Ellipse PreviewMouseDown="PreviewMouseDownEllipse"
                   MouseDown="MouseDownEllipse"
                   x:Name="myEllipse"
                   Canvas.Left="1" Canvas.Top="1" Width="16" Height="16"
                   Fill="Yellow" Stroke="Black" />

          <Ellipse Canvas.Left="4.5" Canvas.Top="5" Width="2.5" Height="3"
                   Fill="Black" />
          <Ellipse Canvas.Left="11" Canvas.Top="5" Width="2.5" Height="3"
                   Fill="Black" />
          <Path Data="M 5,10 A 3,3 0 0 0 13,10" Stroke="Black" />
        </Canvas>

        <TextBlock Grid.Column="1">Click!</TextBlock>
      </Grid>
    </Button>
  </Grid>
</Window>



//File:Window.xaml.vb

Imports System
Imports System.Windows
Imports System.Diagnostics

Namespace WpfApplication1
  Public Partial Class HaltingEvents
    Inherits System.Windows.Window

    Public Sub New()
      InitializeComponent()
    End Sub
    Private Sub ButtonDownCanvas(sender As Object, e As RoutedEventArgs)
      Debug.WriteLine("ButtonDownCanvas")
      e.Handled = True
    End Sub
    Private Sub PreviewMouseDownButton(sender As Object, e As RoutedEventArgs)
      Debug.WriteLine("PreviewMouseDownButton")
    End Sub

    Private Sub MouseDownButton(sender As Object, e As RoutedEventArgs)
      Debug.WriteLine("MouseDownButton")
    End Sub


    Private Sub PreviewMouseDownGrid(sender As Object, e As RoutedEventArgs)
      Debug.WriteLine("PreviewMouseDownGrid")
    End Sub

    Private Sub MouseDownGrid(sender As Object, e As RoutedEventArgs)
      Debug.WriteLine("MouseDownGrid")
    End Sub


    Private Sub PreviewMouseDownCanvas(sender As Object, e As RoutedEventArgs)
      Debug.WriteLine("PreviewMouseDownCanvas")
    End Sub


    Private Sub PreviewMouseDownEllipse(sender As Object, e As RoutedEventArgs)
      Debug.WriteLine("PreviewMouseDownEllipse")
    End Sub

    Private Sub MouseDownEllipse(sender As Object, e As RoutedEventArgs)
      Debug.WriteLine("MouseDownEllipse")
    End Sub
  End Class
End Namespace

   
    
    
    
  








Related examples in the same category

1.Get event sender from eventGet event sender from event
2.Handle the ContentRendered eventHandle the ContentRendered event
3.Find source element of an element in event handler by castingFind source element of an element in event handler by casting
4.Add an event handler to an element using codeAdd an event handler to an element using code
5.Security ExceptionSecurity Exception
6.Throw Handled ExceptionThrow Handled Exception
7.Check handler event senderCheck handler event sender
8.Do event based on button nameDo event based on button name
9.Add event handler to StackPanel in StackPanel resourceAdd event handler to StackPanel in StackPanel resource
10.Add a PropertyChangedValueCallback to Any Dependency PropertyAdd a PropertyChangedValueCallback to Any Dependency Property
11.Handle a Button Click with Shared button click handlerHandle a Button Click with Shared button click handler
12.DispatcherTimer and EventHandlerDispatcherTimer and EventHandler
13.Thumb DragStarted and DragCompleted event handlerThumb DragStarted and DragCompleted event handler
14.Set interval and event handler for DispatcherTimerSet interval and event handler for DispatcherTimer
15.Get the event sender nameGet the event sender name
16.Event firing sequenceEvent firing sequence
17.Cancel event by setting CanExecute and Handled to falseCancel event by setting CanExecute and Handled to false
18.Event sender, event source and event original sourceEvent sender, event source and event original source
19.Cast event sender to a controlCast event sender to a control
20.Fire an event when an element gains and loses focus.Fire an event when an element gains and loses focus.