共用方式為


TextInputPanel.CorrectionModeChanged 事件

當修正模式已變更時發生。

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

語法

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

AddHandler instance.CorrectionModeChanged, handler
public event EventHandler<CorrectionModeChangeEventArgs> CorrectionModeChanged
public:
 event EventHandler<CorrectionModeChangeEventArgs^>^ CorrectionModeChanged {
    void add (EventHandler<CorrectionModeChangeEventArgs^>^ value);
    void remove (EventHandler<CorrectionModeChangeEventArgs^>^ value);
}
/** @event */
public void add_CorrectionModeChanged (EventHandler<CorrectionModeChangeEventArgs> value)
/** @event */
public void remove_CorrectionModeChanged (EventHandler<CorrectionModeChangeEventArgs> value)
JScript 不支援事件。

範例

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

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

AddHandler tip.CorrectionModeChanged, AddressOf tip_CorrectionModeChanged
tip.CorrectionModeChanged += new EventHandler<CorrectionModeChangeEventArgs>(tip_CorrectionModeChanged);

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

Sub tip_CorrectionModeChanged(ByVal sender As Object, ByVal e As CorrectionModeChangeEventArgs)
    outputTextBox.Text += "New Correction Mode is " + e.NewMode.ToString() + Environment.NewLine
    outputTextBox.Text += "Current Correction Mode is " + tip.CurrentCorrectionMode.ToString() + Environment.NewLine
End Sub
void tip_CorrectionModeChanged(object sender, CorrectionModeChangeEventArgs e)
{
    outputTextBox.Text += "New Correction Mode is " + e.NewMode + 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

請參閱

參考

TextInputPanel 類別

TextInputPanel 成員

Microsoft.Ink.TextInput 命名空間