[SRCategory("CatBehavior")]
[SRDescription("FormOnInputLangChangeDescr")]
public event System.Windows.Forms.InputLanguageChangedEventHandler InputLanguageChanged
public event InputLanguageChanged: System.Windows.Forms.InputLanguageChangedEventHandler;
In JScript, you can handle the events defined by another class, but you cannot define your own.
[SRCategory("CatBehavior")]
[SRDescription("FormOnInputLangChangeDescr")]
public: __event System.Windows.Forms.InputLanguageChangedEventHandler* InputLanguageChanged
[SRCategory("CatBehavior")]
[SRDescription("FormOnInputLangChangeDescr")]
public:
event System.Windows.Forms.InputLanguageChangedEventHandler^ InputLanguageChanged
'Declaration
<SRCategoryAttribute("CatBehavior")>
<SRDescriptionAttribute("FormOnInputLangChangeDescr")>
Public Event InputLanguageChanged As System.Windows.Forms.InputLanguageChangedEventHandler
'Usage
Dim instance As LicenseDialog
Dim handler As System.Windows.Forms.InputLanguageChangedEventHandler
AddHandler instance.InputLanguageChanged, handler
The event handler receives an argument of type System.Windows.Forms.InputLanguageChangedEventArgs containing data related to this event. The following InputLanguageChangedEventArgs properties provide information specific to this event.
Property | Description |
---|
CharSet | Gets the character set associated with the new input language. |
Culture | Gets the locale of the input language. |
InputLanguage | Gets a value indicating the input language. |
Target Platforms: .NET CLR 4.8 or higher