ComponentOne Basic Library for WPF and Silverlight
PositionChanged Event (C1Window)


C1.Silverlight Namespace > C1Window Class : PositionChanged Event
Fires when the window position changes.
Syntax
'Declaration
 
Public Event PositionChanged As System.EventHandler(Of PositionChangedEventArgs)
'Usage
 
Dim instance As C1Window
Dim handler As System.EventHandler(Of PositionChangedEventArgs)
 
AddHandler instance.PositionChanged, handler
public event System.EventHandler<PositionChangedEventArgs> PositionChanged
Event Data

The event handler receives an argument of type PositionChangedEventArgs containing data related to this event. The following PositionChangedEventArgs properties provide information specific to this event.

PropertyDescription
Gets the previous position of the window.  
See Also