Show Font Dialog Help : FontDialog « GUI Windows Forms « C# / CSharp Tutorial






Show Font Dialog Help
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

public class FontDialogDisplayHelp : System.Windows.Forms.Form
{
  private System.ComponentModel.Container components = null;
  private System.Windows.Forms.FontDialog fontDlg = new System.Windows.Forms.FontDialog();    
  private Font currFont = new Font("Times New Roman", 12);

  public FontDialogDisplayHelp()
  {
    InitializeComponent();
    fontDlg.ShowHelp = true;    
  }

  protected override void Dispose( bool disposing )
  {
    if( disposing )
    {
      if (components != null) 
      {
        components.Dispose();
      }
    }
    base.Dispose( disposing );
  }


  private void InitializeComponent()
  {
    this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
    this.ClientSize = new System.Drawing.Size(292, 273);
    this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.FontDialogDisplayHelp_MouseUp);
    this.Paint += new System.Windows.Forms.PaintEventHandler(this.FontDialogDisplayHelp_Paint);

  }
  [STAThread]
  static void Main() 
  {
    Application.Run(new FontDialogDisplayHelp());
  }

  private void FontDialogDisplayHelp_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
  {
    Graphics g = e.Graphics;
    g.DrawString("Testing...", currFont, new SolidBrush(Color.Black), 0, 0);  
  }

  private void FontDialogDisplayHelp_MouseUp(object sender, System.Windows.Forms.MouseEventArgs e)
  {
    if (fontDlg.ShowDialog() != DialogResult.Cancel)
    {
      currFont = fontDlg.Font;
      Invalidate();
    }
  }
}








23.48.FontDialog
23.48.1.FontDialog Apply eventFontDialog Apply event
23.48.2.Set the label font to a font selected from a FontDialog
23.48.3.Font Dialog: Display and get selected fontFont Dialog: Display and get selected font
23.48.4.Show Font Dialog HelpShow Font Dialog Help
23.48.5.FontDialog: set color, Apply event