共用方式為


PenInputPanel.Busy 屬性

已取代。取得布林值,指出 PenInputPanel 物件目前是否正在處理「筆墨」。PenInputPanel 已被 Microsoft.Ink.TextInput 取代。

命名空間:  Microsoft.Ink
組件:  Microsoft.Ink (在 Microsoft.Ink.dll 中)

語法

'宣告
Public ReadOnly Property Busy As Boolean
'用途
Dim instance As PenInputPanel
Dim value As Boolean

value = instance.Busy
public bool Busy { get; }
public:
property bool Busy {
    bool get ();
}
/** @property */
public boolean get_Busy()
public function get Busy () : boolean

屬性值

型別:System.Boolean
PenInputPanel 物件目前是否正在處理筆墨。

意義

true

PenInputPanel 物件目前正在處理筆墨。

false

PenInputPanel 物件目前並未處理筆墨。

備註

ms571975.alert_security(zh-tw,VS.90).gif安全性注意事項:

如果在部分信任的情況下使用,除了 PenInputPanel 所需的權限之外,這個屬性還需要 SecurityPermissionFlag.AllFlags (英文) 權限。如需詳細資訊,請參閱Security and Trust

範例

這個 C# 範例會為按鈕點選事件 theButton_Click 建立事件處理常式。在處理按鈕點選動作之前,處理常式會查看 PenInputPanel 物件 (thePenInputPanel) 是否正在處理筆墨。如果是的話,事件處理常式會呼叫 CommitPendingInput 方法,強制 PenInputPanel 物件先完成處理筆墨的程序,再繼續進行。

[C#]

//...
private void theButton_Click(object sender, System.EventArgs e)
{
    // If the PenInputPanel is still processing ink...
    if (thePenInputPanel.Busy)
    {
        // Force the PenInputPanel to commit user input
        thePenInputPanel.CommitPendingInput();
    }

    // Process the action from the button click
    //...
}

這個 Microsoft® Visual Basic® .NET 範例會建立按鈕點選事件

theButton_Click 的事件處理常式。在處理按鈕點選動作之前,處理常式會查看 PenInputPanel 物件 (thePenInputPanel) 是否正在處理筆墨。如果是的話,事件處理常式會呼叫 CommitPendingInput 方法,強制 PenInputPanel 物件先完成處理筆墨的程序,再繼續進行。

[Visual Basic]

'...
Private Sub theButton_Click(ByVal sender As System.Object, _
                          ByVal e As System.EventArgs) _
                          Handles theButton.Click
    ' If the PenInputPanel is still processing ink...
    If thePenInputPanel.Busy Then
        ' Force the PenInputPanel to commit user input
        thePenInputPanel.CommitPendingInput()
    End If

    ' Process the action from the button click
    '...
End Sub

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求

版本資訊

.NET Framework

支援版本:3.0

請參閱

參考

PenInputPanel 類別

PenInputPanel 成員

Microsoft.Ink 命名空間

PenInputPanel.CommitPendingInput