Csharp/C Sharp/2D Graphics/SystemColors
Версия от 15:31, 26 мая 2010; (обсуждение)
Use the color of Window and WindowText from SystemColors
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);
}
}