TextInputPanel.CorrectionModeChanging 事件
在更正模式即将更改时发生。
命名空间: Microsoft.Ink.TextInput
程序集: Microsoft.Ink(在 Microsoft.Ink.dll 中)
语法
声明
Public Event CorrectionModeChanging As EventHandler(Of CorrectionModeChangeEventArgs)
用法
Dim instance As TextInputPanel
Dim handler As EventHandler(Of CorrectionModeChangeEventArgs)
AddHandler instance.CorrectionModeChanging, handler
public event EventHandler<CorrectionModeChangeEventArgs> CorrectionModeChanging
public:
event EventHandler<CorrectionModeChangeEventArgs^>^ CorrectionModeChanging {
void add (EventHandler<CorrectionModeChangeEventArgs^>^ value);
void remove (EventHandler<CorrectionModeChangeEventArgs^>^ value);
}
/** @event */
public void add_CorrectionModeChanging (EventHandler<CorrectionModeChangeEventArgs> value)
/** @event */
public void remove_CorrectionModeChanging (EventHandler<CorrectionModeChangeEventArgs> value)
JScript 不支持事件。
示例
下面的两个示例演示如何使用 CorrectionModeChanging。
第一个示例将 CorrectionModeChanging 事件处理程序 tip_CorrectionModeChanging 附加到 TextInputPanel 对象 tip。
AddHandler tip.CorrectionModeChanging, AddressOf tip_CorrectionModeChanging
tip.CorrectionModeChanging += new EventHandler<CorrectionModeChangeEventArgs>(tip_CorrectionModeChanging);
第二个示例定义 CorrectionModeChanging 事件的事件处理程序,其中包含在 OldMode 和 CurrentCorrectionMode 中的值用于设置 TextBox (outputTextBox) 的 TextBox.Text 属性。
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;
}
平台
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0