我在看一些GDI教程,但到目前爲止我發現的所有東西都和OnPaint方法一起使用,它將Paintarguments傳遞給Graphics。我還沒有找到從頭開始,我的意思是如何使用Graphics類本身? 這是整個代碼,我有TREID對我來說只是不工作:在OnPaint方法下畫一個橢圓
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Pen pen= new Pen(Color.Red, 3);
Graphics g;
g = this.CreateGraphics();
g.DrawEllipse(pen, 150, 150, 100, 100);
}
}
}
它只是不執行任何操作。我嘗試了新的形式,沒有任何東西。
預先感謝您!
什麼是或沒有工作? – 2009-10-06 09:41:02
當您調用CreateGraphics時,您必須手動處理創建的對象,即在完成處理時調用g.Dispose()。 – Skizz 2009-10-06 10:03:30