2
我有以下代碼:DataGridView的OnPaint事件中的無限循環是正常的嗎?
int a = 0;
protected override void OnPaint(System.Windows.Forms.PaintEventArgs e)
{
base.OnPaint(e);
this.Rows[1].Cells[1].Value = a += 1;
}
,我可以看到這個變量增加至無窮遠。我用它來繪製一個圖形制作它的一個實例,它工作正常。 這是正常的嗎?我正在創建無限圖實例?或者我有一個問題,但我不知道
非常好的回答:) – 2012-04-05 03:46:02