![]() |
От: | Аноним | |
Дата: | 17.12.10 13:22 | ||
Оценка: |
public сlass AntiALiasLabel : Label
{
public AntiALiasLabel()
{
InitializeComponent();
}
protected override void OnPaint(PaintEventArgs e)
{
e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAliasGridFit;
base.OnPaint(e);
}
}