Get the event sender name : Event « Windows Presentation Foundation « VB.Net Tutorial






<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="WpfApplication1.Window1"
    Title="Routed Events" Height="400" Width="800">
  
    <Grid Name="contentGrid" Background="Red">
        <Rectangle Name="clickMeRectangle" 
                   Height="70" 
                   Width="70" 
                   Stroke="Black" 
                   Fill="CadetBlue" />
        <Button Name="clickMeButton" 
                Height="23" 
                HorizontalAlignment="Right" 
                VerticalAlignment="Top" 
                Width="70" 
                PreviewMouseDown="Generic_MouseDown" 
                Click="clickMeButton_Click">Click Me</Button>
        <TextBlock Name="outputText" />
    </Grid>
</Window>

//File:Window.xaml.vb
Imports System
Imports System.Collections.Generic
Imports System.Linq
Imports System.Text
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Data
Imports System.Windows.Documents
Imports System.Windows.Input
Imports System.Windows.Media
Imports System.Windows.Media.Imaging
Imports System.Windows.Navigation
Imports System.Windows.Shapes

Namespace WpfApplication1
  Public Partial Class Window1
    Inherits Window
    Private Sub Generic_MouseDown(sender As Object, e As MouseButtonEventArgs)
      Console.WriteLine(outputText.Text)
      Console.WriteLine(e.RoutedEvent.Name)
      Console.WriteLine(sender.ToString())
      Console.WriteLine(DirectCast(e.Source, FrameworkElement).Name)
    End Sub

    Private Sub Window_MouseUp(sender As Object, e As MouseButtonEventArgs)
      outputText.Text = outputText.Text
    End Sub

    Private Sub clickMeButton_Click(sender As Object, e As RoutedEventArgs)
      outputText.Text = "Button clicked:" + outputText.Text
    End Sub
  End Class
End Namespace
WPF Get The Event Sender Name








16.87.Event
16.87.1.Get event sender from eventGet event sender from event
16.87.2.Handle the ContentRendered eventHandle the ContentRendered event
16.87.3.Find source element of an element in event handler by castingFind source element of an element in event handler by casting
16.87.4.Add an event handler to an element using codeAdd an event handler to an element using code
16.87.5.Halting event routing with HandledHalting event routing with Handled
16.87.6.Security ExceptionSecurity Exception
16.87.7.Throw Handled ExceptionThrow Handled Exception
16.87.8.Check handler event senderCheck handler event sender
16.87.9.Do event based on button nameDo event based on button name
16.87.10.Add event handler to StackPanel in StackPanel resourceAdd event handler to StackPanel in StackPanel resource
16.87.11.Add a PropertyChangedValueCallback to Any Dependency PropertyAdd a PropertyChangedValueCallback to Any Dependency Property
16.87.12.Handle a Button Click with Shared button click handlerHandle a Button Click with Shared button click handler
16.87.13.DispatcherTimer and EventHandlerDispatcherTimer and EventHandler
16.87.14.Thumb DragStarted and DragCompleted event handlerThumb DragStarted and DragCompleted event handler
16.87.15.Set interval and event handler for DispatcherTimerSet interval and event handler for DispatcherTimer
16.87.16.Get the event sender nameGet the event sender name
16.87.17.Event firing sequenceEvent firing sequence
16.87.18.Cancel event by setting CanExecute and Handled to falseCancel event by setting CanExecute and Handled to false
16.87.19.Event sender, event source and event original sourceEvent sender, event source and event original source
16.87.20.Cast event sender to a controlCast event sender to a control
16.87.21.Fire an event when an element gains and loses focus.Fire an event when an element gains and loses focus.