| Visual Basic (Declaration) | |
|---|---|
Public Event InteractiveRegion() As InteractiveRegionEventHandler | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
public event InteractiveRegionEventHandler InteractiveRegion() | |
| Managed Extensions for C++ | |
|---|---|
public: __event InteractiveRegionEventHandler* InteractiveRegion(); | |
| C++/CLI | |
|---|---|
public: event InteractiveRegionEventHandler^ InteractiveRegion(); | |
| XAML Attributes Usage | |
|---|---|
<object InteractiveRegion=EventHandler<ExceptionRoutedEventArgs>/> ... | |
| Routed Event Information | |
|---|---|
Identifier field | |
Routing strategy | Bubbling |
Delegate |
For XAML example, refer to BitmapSourceViewer.IsInteractiveModeBusy.
For C#/VB examples, refer to BitmapSourceViewerRectangleEventArgs.
Only occurs when the BitmapSourceViewer.InteractiveMode property is set to BitmapSourceViewerInteractiveMode.Region
and the BitmapSourceViewer.InteractiveRegionType is set to BitmapSourceViewerInteractiveRegionType.Rectangle or BitmapSourceViewerInteractiveRegionType.Ellipse.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003 family
Copy Code