InputLanguageChanged Event
See Also 
SourceCode.Workflow.WizardFramework.Authentication Namespace > CredentialsDialog Class : InputLanguageChanged Event



Glossary Item Box

Syntax

Visual Basic (Declaration)  
<SRCategoryAttribute("Behavior")>
<SRDescriptionAttribute("Occurs whenever the language used for input for this form changes.")>
Public Event InputLanguageChanged As InputLanguageChangedEventHandler
Visual Basic (Usage) Copy Code
Dim instance As CredentialsDialog
Dim handler As InputLanguageChangedEventHandler
 
AddHandler instance.InputLanguageChanged, handler
C#  
[SRCategory("Behavior")]
[SRDescription("Occurs whenever the language used for input for this form changes.")]
public event InputLanguageChangedEventHandler InputLanguageChanged
C++/CLI  
[SRCategory("Behavior")]
[SRDescription("Occurs whenever the language used for input for this form changes.")]
public:
event InputLanguageChangedEventHandler^ InputLanguageChanged

Event Data

The event handler receives an argument of type 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.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also