Hi

In my explorer look application i want the panels to have a 3D look.

I added for panel paint event the follwing code

private void panel_Paint(object sender, System.Windows.Forms.PaintEventArgs
e){

base.OnPaint (e);

Rectangle borderRectangle = this.ClientRectangle;

ControlPaint.DrawBorder3D(e.Graphics, borderRectangle,

Border3DStyle.Etched);

}