Hello. I need to make a 3D panel. At the moment i am using
private void panel1_Paint(object sender, PaintEventArgs e)
{
Graphics g = e.Graphics;
Rectangle r = ClientRectangle;
Border3DStyle style = Border3DStyle.RaisedInner;
ControlPaint.DrawBorder3D(g, r, style, Border3DSide.All);
}
I need a more Raised look than this. And i need all the sides to be
raised.