InputPanel.Enabled 属性

获取或设置一个值,该值指示是已启用还是已禁用软输入面板 (SIP)。

命名空间:  Microsoft.WindowsCE.Forms
程序集:  Microsoft.WindowsCE.Forms(在 Microsoft.WindowsCE.Forms.dll 中)

语法

声明
Public Property Enabled As Boolean
用法
Dim instance As InputPanel
Dim value As Boolean

value = instance.Enabled

instance.Enabled = value
public bool Enabled { get; set; }
public:
property bool Enabled {
    bool get ();
    void set (bool value);
}
public function get Enabled () : boolean
public function set Enabled (value : boolean)

属性值

类型:System.Boolean

如果已启用 SIP,则为 true;否则为 false。

备注

当 SIP 出现在应用程序中时,则说明已启用 SIP。

当将 Enabled 属性更改为 true 或 false 时,将引发 EnabledChanged 事件。

示例

下面的示例在文本框接收到焦点时显示 SIP。此示例摘自为 InputPanel 组件提供的一个更大的示例。

Private Sub TextBox1_GotFocus(ByVal sender As Object, _
    ByVal e As System.EventArgs) Handles TextBox1.GotFocus
 ' Display the SIP.
 ' Note that the EnabledChanged event occurs
 ' whenever the SIP is enabled or disabled.
 InputPanel1.Enabled = True
End Sub
private void textBox1_GotFocus(object sender, System.EventArgs e)
{
    // Display the SIP.
    // Note that the EnabledChanged event occurs
    // whenever the SIP is enabled or disabled.
    inputPanel1.Enabled = true;

}

权限

平台

Windows CE, Windows Mobile for Pocket PC

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

版本信息

.NET Compact Framework

受以下版本支持:3.5、2.0、1.0

另请参见

参考

InputPanel 类

InputPanel 成员

Microsoft.WindowsCE.Forms 命名空间

EnabledChanged