InputLanguageEventArgs(CultureInfo, CultureInfo) Constructor

Definition

Initializes base class values for a new instance of a deriving class.

protected:
 InputLanguageEventArgs(System::Globalization::CultureInfo ^ newLanguageId, System::Globalization::CultureInfo ^ previousLanguageId);
protected InputLanguageEventArgs (System.Globalization.CultureInfo newLanguageId, System.Globalization.CultureInfo previousLanguageId);
new System.Windows.Input.InputLanguageEventArgs : System.Globalization.CultureInfo * System.Globalization.CultureInfo -> System.Windows.Input.InputLanguageEventArgs
Protected Sub New (newLanguageId As CultureInfo, previousLanguageId As CultureInfo)

Parameters

newLanguageId
CultureInfo

A CultureInfo object representing a new current input language.

previousLanguageId
CultureInfo

A CultureInfo object representing the previous current input language.

Remarks

Classes that derive from InputLanguageEventArgs should call this constructor to ensure that values provided by the abstract base class are initialized properly.

The constructors for InputLanguageChangedEventArgs and InputLanguageChangingEventArgs automatically call this base constructor.

Applies to

See also