Use the color of Window and WindowText from SystemColors

image_pdfimage_print
   

using System;
using System.Drawing;
using System.Windows.Forms;
   
class HuckleberryFinn: Form
{
     public static void Main() 
     {
          Application.Run(new HuckleberryFinn()); 
     }
     public HuckleberryFinn()
     {
          Text = ""The Adventures of Huckleberry Finn"";
          BackColor = SystemColors.Window;
          ForeColor = SystemColors.WindowText;
          ResizeRedraw = true;
     }
     protected override void OnPaint(PaintEventArgs pea)
     {
          pea.Graphics.DrawString("some stretchers, as I said before.", Font, new SolidBrush(ForeColor), ClientRectangle);
     }
}
           
          


This entry was posted in 2D Graphics. Bookmark the permalink.