aboutsummaryrefslogtreecommitdiff
path: root/Histacom2.Engine/UI/ClassicLabel.cs
blob: c7007bda4cd61d6b5f18e0f7a9d0c23ff726fdc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Histacom2.Engine.UI
{
    public class ClassicLabel : Control
    {
        public ClassicLabel()
        {
            TextChanged += (s, e) => Invalidate();
        }

        protected override void OnPaint(PaintEventArgs e)
        {
            base.OnPaint(e);
            var gfx = e.Graphics;
            gfx.Clear(BackColor);
            gfx.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit;

            gfx.DrawString(Text, Font, new SolidBrush(ForeColor), ClientRectangle);
            Height = (int)gfx.MeasureString(Text, Font, ClientRectangle.Width).Height;
        }
    }
}