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();
}