我試圖創建一個與彩色像素球製成的檯球桌。 我的問題是,我試圖讓對臺球桌的圖形對象,但我不知道如何對其進行初始化 我知道應該使用創建圖形對象
PaintEventArgs pe
我已經試過
base.OnPaint(pe);
// Declare and instantiate a new pen.
System.Drawing.Pen myPen = new System.Drawing.Pen(Color.Aqua);
// Draw an aqua rectangle in the rectangle represented by the control.
pe.Graphics.DrawRectangle(myPen, new Rectangle(this.Location,
this.Size));`
但它只創建了一個矩形,它需要一個面板。這是做這件事的正確方法,因爲我應該創建一個彩色像素球?
請考慮檢查一些基本的繪圖示例,閱讀MSDN上'DrawRectangle'的文檔並調試您的代碼......(您當前的問題是由於使用矩形的錯誤起始點...) –
但我正確嗎?在面板裏面? – user3439558