CorrectionModeChangeEventArgs 类
为 CorrectionModeChanging 和 CorrectionModeChanged 事件提供数据。
命名空间: Microsoft.Ink.TextInput
程序集: Microsoft.Ink(在 Microsoft.Ink.dll 中)
语法
声明
Public Class CorrectionModeChangeEventArgs _
Inherits EventArgs
用法
Dim instance As CorrectionModeChangeEventArgs
public class CorrectionModeChangeEventArgs : EventArgs
public ref class CorrectionModeChangeEventArgs : public EventArgs
public class CorrectionModeChangeEventArgs extends EventArgs
public class CorrectionModeChangeEventArgs extends EventArgs
示例
下面的示例演示 CorrectionModeChangeEventArgs 的用法。tip_CorrectionModeChanging 是 CorrectionModeChanging 事件的事件处理程序。对象 tip 是 TextInputPanel 的实例。OldMode 和 CurrentCorrectionMode 值用于设置 TextBox (outputTextBox) 的 TextBox.Text 属性。OldMode 和 CurrentCorrectionMode 包含 CorrectionMode 值之一。
Sub tip_CorrectionModeChanging(ByVal sender As Object, ByVal e As CorrectionModeChangeEventArgs)
outputTextBox.Text += "Old Correction Mode is " + e.OldMode.ToString() + Environment.NewLine
outputTextBox.Text += "Current Correction Mode is " + tip.CurrentCorrectionMode.ToString() + Environment.NewLine
End Sub
void tip_CorrectionModeChanging(object sender, CorrectionModeChangeEventArgs e)
{
outputTextBox.Text += "Old Correction Mode is " + e.OldMode + Environment.NewLine;
outputTextBox.Text += "Current Correction Mode is " + tip.CurrentCorrectionMode + Environment.NewLine;
}
继承层次结构
System.Object
System.EventArgs
Microsoft.Ink.TextInput.CorrectionModeChangeEventArgs
线程安全
此类型的任何公共 static(在 Visual Basic 中为 Shared) 成员都是线程安全的。但不保证所有实例成员都是线程安全的。
平台
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0