VitNX_Title.OnPaint Method

protected override void OnPaint( 
PaintEventArgs e 
)
This language is not supported or no code example is available.

Parameters

e
PaintEventArgs

A PaintEventArgs that contains the event data.

protected override void OnPaint(PaintEventArgs e)
 {
     var g = e.Graphics;
     var rect = new Rectangle(0, 0, ClientSize.Width, ClientSize.Height);
 
     var textSize = g.MeasureString(Text, Font);
 
     using (var b = new SolidBrush(Colors.LightText))
     {
         g.DrawString(Text, Font, b, new PointF(-2, 0));
     }
 
     using (var p = new Pen(Colors.GreyHighlight))
     {
         var p1 = new PointF(textSize.Width + 5, textSize.Height / 2);
         var p2 = new PointF(rect.Width, textSize.Height / 2);
         g.DrawLine(p, p1, p2);
     }
 }
					
This language is not supported or no code example is available.

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

.NET Core

Supported in: 5.0+, 6.0+

In this article

Definition