private
void drawBorderToolStripMenuItem_Click(object sender, EventArgs e)
{
// Graphics:
封装一个 GDI+ 绘图图面。无法继承此类。
Graphics objGraphics = null;
objGraphics = this.CreateGraphics();//CreateGraphics()
为控件创建 Graphics。
objGraphics.Clear(SystemColors.Control);//
清除整个绘图面并以指定背景色填充。 SystemColors.Control它表示绘图面的背景色。
//
绘制由坐标对、宽度和高度指定的矩形。
objGraphics.DrawRectangle(Pens.Blue, picShowPicture.Left - 1, picShowPicture.Top - 1, picShowPicture.Width + 1, picShowPicture.Height + 1);
objGraphics.Dispose();
}