Code: Select all
// Draw the custom border to appear 3-dimensional.
e.Graphics.DrawLines(SystemPens.ControlLightLight, new Point[] {
new Point (0, e.Bounds.Height - 1),
new Point (0, 0),
new Point (e.Bounds.Width - 1, 0)
});
(The code is on this page: https://learn.microsoft.com/en-us/dotne ... esktop-9.0)
Thanks in advance

