PowerTools PlusPak for Windows Forms 8.0J
SelectedFontChanged イベント
使用例 

SelectedFontInfoプロパティの値が変更されたときに発生します。
構文
Public Event SelectedFontChanged As EventHandler
public event EventHandler SelectedFontChanged
使用例

次のサンプルコードは、SelectedFontChangedイベントの使用方法を示します。このサンプルコードを実行するには、System.Windows.Forms.Formプロジェクトを作成し、GcFontPickerインスタンスと、button1という名前のSystem.Windows.Forms.Buttonインスタンスを追加して、以下のコードをプロジェクトに貼り付けます。そして、このイベントハンドラをGcFontPickerインスタンスのSelectedFontChangedイベントに関連付けます。

private void GcFontPicker_DropDownClosed(object sender, EventArgs e)
{
    MessageBox.Show("You are in the GcFontPicker.DropDownClosed event.");
}
Private Sub GcFontPicker_DropDownClosed(ByVal sender As Object, ByVal e As EventArgs)
    MessageBox.Show("You are in the GcFontPicker.DropDownClosed 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

参照

GcFontPicker クラス
GcFontPicker メンバ
OnSelectedFontChanged メソッド
OnSelectedFontChanged メソッド

Send Feedback