我的C#Windows-Forms項目出現問題。我正在畫一個正方形,我想在一個圖畫框裏面顯示這個正方形。我怎樣才能做到這一點?如何畫一個正方形到一個PictureBox?
這是我的函數用於繪製方形:
public void DrawingSquares(int x, int y)//the function gets x and y to know where to print the square.
{
Graphics graphicsObj;
graphicsObj = this.CreateGraphics();
Pen myPen = new Pen(Color.Black, 5);
Rectangle myRectangle = new Rectangle(x, y, 100, 100);
graphicsObj.DrawRectangle(myPen, myRectangle);
}
當我的功能取代你的功能時,它的細節給了我很多對不起:對不起: – 2012-04-23 08:52:51
錯誤名稱'PixelFormat'在當前上下文中不存在\t c:\ users \ 08_11_2010 \ documents \ visual studio 2010 \ Projects \ WindowsFormsApplication3 \ WindowsFormsApplication3 \ Form1.cs WindowsFormsApplication3 – 2012-04-23 09:00:53
錯誤 'SmoothingMode' 並不在當前情況下\t存在C的名字:\用戶\ 08_11_2010 \文檔\ Visual Studio 2010的\項目\ WindowsFormsApplication3 \ WindowsFormsApplication3 \ Form1.cs中 WindowsFormsApplication3 – 2012-04-23 09:02:02