Application.CurrentInputLanguage Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene o establece el idioma de entrada actual para el subproceso actual.
public:
static property System::Windows::Forms::InputLanguage ^ CurrentInputLanguage { System::Windows::Forms::InputLanguage ^ get(); void set(System::Windows::Forms::InputLanguage ^ value); };
public static System.Windows.Forms.InputLanguage CurrentInputLanguage { get; set; }
member this.CurrentInputLanguage : System.Windows.Forms.InputLanguage with get, set
Public Shared Property CurrentInputLanguage As InputLanguage
Valor de propiedad
InputLanguage que representa el idioma de entrada actual para el subproceso actual.
Ejemplos
En el ejemplo de código siguiente se obtiene esta propiedad y se muestra su valor en un cuadro de texto. El ejemplo requiere que textBox1
se haya colocado en un formulario.
private:
void PrintCurrentInputLanguage()
{
textBox1->Text = "The current input language is: {0}",
Application::CurrentInputLanguage->Culture->EnglishName;
}
private void PrintCurrentInputLanguage() {
textBox1.Text = "The current input language is: " +
Application.CurrentInputLanguage.Culture.EnglishName;
}
Private Sub PrintCurrentInputLanguage()
textBox1.Text = "The current input language is: " & _
Application.CurrentInputLanguage.Culture.EnglishName
End Sub