using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.Drawing; public class MyLabel : Control { protected override void OnPaint(PaintEventArgs e) { DrawPaint(); base.OnPaint(e); } private string s…