LEADTOOLS Medical (Leadtools.Medical.Workstation assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
AutoWindowLevelShortcutChanged Event
See Also 
Leadtools.Medical.Workstation.UI Namespace > ModalitySettingsDialog Class : AutoWindowLevelShortcutChanged Event




Occurs when the AutoWindowLevel shortcut key is changed.

Syntax

Visual Basic (Declaration) 
Public Event AutoWindowLevelShortcutChanged As EventHandler(Of DataEventArgs(Of Keys))
Visual Basic (Usage)Copy Code
Dim instance As ModalitySettingsDialog
Dim handler As EventHandler(Of DataEventArgs(Of Keys))
 
AddHandler instance.AutoWindowLevelShortcutChanged, handler
C# 
public event EventHandler<DataEventArgs<Keys>> AutoWindowLevelShortcutChanged
Managed Extensions for C++ 
public: __event EventHandler<DataEventArgs<Keys>*>* AutoWindowLevelShortcutChanged
C++/CLI 
public:
event EventHandler<DataEventArgs<Keys>^>^ AutoWindowLevelShortcutChanged

Event Data

The event handler receives an argument of type DataEventArgs<TData> containing data related to this event. The following DataEventArgs<TData> properties provide information specific to this event.

PropertyDescription
Data Gets the argument data to pass to an event handler.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also