共用方式為


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