GrapeCity.Win.Pickers 名前空間 > GcColorPicker クラス : TextAlignChanged イベント |
Public Event TextAlignChanged As EventHandler
public event EventHandler TextAlignChanged
次のサンプルコードは、このメンバの使用方法を示します。この例では、TextAlignChangedイベントが発生するとイベントハンドラによってそれが報告されます。これにより、イベントがいつ発生するかがわかり、イベントハンドラをデバッグに利用できます。複数のイベントまたは繰り返し発生するイベントを報告する場合は、MessageBox.ShowをConsole.WriteLineに置き換えるか、複数行のSystem.Windows.Forms.TextBoxにメッセージを追記してください。
このサンプルコードを実行するには、System.Windows.Forms.Formプロジェクトを作成し、GcColorPickerのインスタンスを追加して、以下のコードをプロジェクトに貼り付けます。そして、このイベントハンドラをTextAlignChangedイベントに関連付けます。
private void gcColorPicker_TextAlignChanged(object sender, EventArgs e) { MessageBox.Show("You are in the GcColorPicker.TextAlignChanged event."); }
Private Sub gcColorPicker_TextAlignChanged(ByVal sender As Object, ByVal e As EventArgs) MessageBox.Show("You are in the GcColorPicker.TextAlignChanged event.") End Sub
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2