Occurs when the user performs interactive centering of the image display.
Supported in Silverlight, Windows Phone 7
Syntax
Event Data
The event handler receives an argument of type PointInteractiveEventArgs containing data related to this event. The following PointInteractiveEventArgs properties provide information specific to this event.
Example
This example centers the image in the control by clicking the mouse. Also, it displays the contents of the ImageViewer.InteractiveCenterAt event in the console.
Visual Basic | Copy Code |
---|
Private Sub viewer_InteractiveCenterAt(ByVal sender As Object, ByVal e As PointInteractiveEventArgs)
Console.WriteLine("InteractiveCenterAt: e.Status {0}, e.Cancel {1}", e.Status, e.Cancel)
End Sub
Public Sub BitmapSourceViewer_InteractiveCenterAt(ByVal viewer As ImageViewer)
viewer.InteractiveMode = InteractiveMode.CenterAt
AddHandler viewer.InteractiveCenterAt, AddressOf viewer_InteractiveCenterAt
' Click mouse on image to see the center the image
' After you are done, you must remove the event handler as in below
'
' viewer.InteractiveCenterAt -= new ImageViewer.InteractiveCenterAtEventHandler(viewer_InteractiveCenterAt);
End Sub |
C# | Copy Code |
---|
private void viewer_InteractiveCenterAt(object sender, PointInteractiveEventArgs e)
{
Console.WriteLine("InteractiveCenterAt: e.Status {0}, e.Cancel {1}", e.Status, e.Cancel);
}
public void BitmapSourceViewer_InteractiveCenterAt(ImageViewer viewer)
{
viewer.InteractiveMode = InteractiveMode.CenterAt;
viewer.InteractiveCenterAt += new EventHandler<PointInteractiveEventArgs>(viewer_InteractiveCenterAt);
// Click mouse on image to see the center the image
// After you are done, you must remove the event handler as in below
//
// viewer.InteractiveCenterAt -= new ImageViewer.InteractiveCenterAtEventHandler(viewer_InteractiveCenterAt);
} |
SilverlightCSharp | Copy Code |
---|
private void viewer_InteractiveCenterAt(object sender, PointInteractiveEventArgs e)
{
Console.WriteLine("InteractiveCenterAt: e.Status {0}, e.Cancel {1}", e.Status, e.Cancel);
}
public void BitmapSourceViewer_InteractiveCenterAt(ImageViewer viewer)
{
viewer.InteractiveMode = InteractiveMode.CenterAt;
viewer.InteractiveCenterAt += new EventHandler<PointInteractiveEventArgs>(viewer_InteractiveCenterAt);
// Click mouse on image to see the center the image
// After you are done, you must remove the event handler as in below
//
// viewer.InteractiveCenterAt -= new ImageViewer.InteractiveCenterAtEventHandler(viewer_InteractiveCenterAt);
} |
SilverlightVB | Copy Code |
---|
Private Sub viewer_InteractiveCenterAt(ByVal sender As Object, ByVal e As PointInteractiveEventArgs)
Console.WriteLine("InteractiveCenterAt: e.Status {0}, e.Cancel {1}", e.Status, e.Cancel)
End Sub
Public Sub BitmapSourceViewer_InteractiveCenterAt(ByVal viewer As ImageViewer)
viewer.InteractiveMode = InteractiveMode.CenterAt
AddHandler viewer.InteractiveCenterAt, AddressOf viewer_InteractiveCenterAt
' Click mouse on image to see the center the image
' After you are done, you must remove the event handler as in below
'
' viewer.InteractiveCenterAt -= new ImageViewer.InteractiveCenterAtEventHandler(viewer_InteractiveCenterAt);
End Sub |
Remarks
Requirements
Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also