TextInputPanel.CurrentInputArea 属性

获取当前输入区。

命名空间:  Microsoft.Ink.TextInput
程序集:  Microsoft.Ink(在 Microsoft.Ink.dll 中)

语法

声明
Public ReadOnly Property CurrentInputArea As PanelInputArea
用法
Dim instance As TextInputPanel
Dim value As PanelInputArea

value = instance.CurrentInputArea
public PanelInputArea CurrentInputArea { get; }
public:
property PanelInputArea CurrentInputArea {
    PanelInputArea get ();
}
/** @property */
public PanelInputArea get_CurrentInputArea()
public function get CurrentInputArea () : PanelInputArea

属性值

类型:Microsoft.Ink.TextInput.PanelInputArea
当前输入区。

备注

当用户显式在输入区之间切换焦点时,或者由于输入语言的识别器不受支持而造成默认输入区不可用时,当前输入区不同于默认输入区。

当 Tablet PC 输入面板关闭或隐藏时,当前输入区将重置为默认输入区,除非默认状态为 Auto,在此情况下,当前输入区将不重置,并表示上次可见的输入区。

示例

下面的示例演示 CurrentInputArea 的用法。tip 对象是 TextInputPanel 的实例。CurrentInputArea 和 DefaultInputArea 值用于设置 TextBox (outputTextBox) 的 TextBox.Text 属性。CurrentInputArea 和 DefaultInputArea 包含 PanelInputArea 值之一。

outputTextBox.Text += "Current Input Area is " + tip.CurrentInputArea.ToString() + Environment.NewLine
outputTextBox.Text += "Default Input Area is " + tip.DefaultInputArea.ToString() + Environment.NewLine
outputTextBox.Text += "Current Input Area is " + tip.CurrentInputArea + Environment.NewLine;
outputTextBox.Text += "Default Input Area is " + tip.DefaultInputArea + Environment.NewLine;

平台

Windows Vista, Windows XP SP2, Windows Server 2003

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

TextInputPanel 类

TextInputPanel 成员

Microsoft.Ink.TextInput 命名空间