共用方式為


TextInputPanel.TextInserted 事件

當 Tablet PC 輸入面板已經將文字插入至擁有輸入焦點的控制項時發生。

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

語法

'宣告
Public Event TextInserted As EventHandler(Of TextInsertionEventArgs)
'用途
Dim instance As TextInputPanel
Dim handler As EventHandler(Of TextInsertionEventArgs)

AddHandler instance.TextInserted, handler
public event EventHandler<TextInsertionEventArgs> TextInserted
public:
 event EventHandler<TextInsertionEventArgs^>^ TextInserted {
    void add (EventHandler<TextInsertionEventArgs^>^ value);
    void remove (EventHandler<TextInsertionEventArgs^>^ value);
}
/** @event */
public void add_TextInserted (EventHandler<TextInsertionEventArgs> value)
/** @event */
public void remove_TextInserted (EventHandler<TextInsertionEventArgs> value)
JScript 不支援事件。

範例

在下列兩個範例中,會示範 TextInserted 的用法。

第一個範例會將 TextInserted 事件處理常式 tip_TextInserted 附加至 TextInputPanel 物件 tip。

AddHandler tip.TextInserted, AddressOf tip_TextInserted
tip.TextInserted += new EventHandler<TextInsertionEventArgs>(tip_TextInserted);

第二個範例會定義 TextInserted 事件的事件處理常式,而字串值是用來設定名為 outputTextBox 之 TextBox (英文) 的 TextBox.Text (英文) 屬性。

Sub tip_TextInserted(ByVal sender As Object, ByVal e As TextInsertionEventArgs)
    outputTextBox.Text += "Inserted Text: " + Environment.NewLine
    Dim inkArray As Microsoft.Ink.Ink() = e.GetInk()
    Dim ink As Microsoft.Ink.Ink
    For Each ink In inkArray
        outputTextBox.Text += ink.Strokes.ToString()
    Next ink
    outputTextBox.Text += Environment.NewLine
End Sub
void tip_TextInserted(object sender, TextInsertionEventArgs e)
{
    outputTextBox.Text += "Inserted Text: " + Environment.NewLine;
    Microsoft.Ink.Ink[] inkArray = e.GetInk();
    foreach (Microsoft.Ink.Ink ink in inkArray)
    {
        outputTextBox.Text += ink.Strokes.ToString();
    }
    outputTextBox.Text += 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 命名空間