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 事件的事件处理程序,其中一个字符串值用于设置 TextBox (outputTextBox) 的 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 命名空间