设置pictureBox的边框颜色

private void pictureBox2_Paint(object sender, PaintEventArgs e)   
{   
            PictureBox p = (PictureBox)sender;   
            Pen pp = new Pen(Color.Red);   
            e.Graphics.DrawRectangle(pp, e.ClipRectangle.X, e.ClipRectangle.Y,
e.ClipRectangle.X
+ e.ClipRectangle.Width - 1,
e.ClipRectangle.Y + e.ClipRectangle.Height - 1);

}
原文地址:https://www.cnblogs.com/hardsoftware/p/5720545.html