次の方法で共有


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 では、イベントは使用できません。

次の 2 つの例は、CorrectionModeChanging の使い方を示しています。

最初の例では、CorrectionModeChanging イベント ハンドラ tip_CorrectionModeChanging を TextInputPanel オブジェクト tip に結合しています。

AddHandler tip.CorrectionModeChanging, AddressOf tip_CorrectionModeChanging
tip.CorrectionModeChanging += new EventHandler<CorrectionModeChangeEventArgs>(tip_CorrectionModeChanging);

2 つ目の例では、OldMode および CurrentCorrectionMode に格納されている値を使用して、TextBox、outputTextBox の TextBox.Text プロパティを設定する、CorrectionModeChanging イベントのイベント ハンドラを定義しています。

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

参照

参照

TextInputPanel クラス

TextInputPanel メンバ

Microsoft.Ink.TextInput 名前空間