1

使用 Visual C# 2008 Exp Edition,我注意到加载我的项目后,该进程消耗了大约 70,000K 的内存。几个小时后,它会增加到大约 500,000K。

此时 aUserControl包含 a PictureBox(在 a 内Panel)显示 Visual C# Express 中的内存错误。图片框包含一个位图和矩形网格,用System.Drawing.Graphics.

这是代码:

这个段在初始化时只发生一次UserControl

Bitmap myBitmap = new Bitmap(a, b);
Graphics g = null;
g = Graphics.FromImage(myBitmap);
g.FillRectangle(Brushes.SteelBlue, 0, 0, c, d);

//Paint Rows & Columns
for (int x = 0; x <= e - 1; x++)
{
    for (int y = 0; y <= f - 1; y++)
    {
        g.DrawRectangle(Pens.LightBlue, g, h, i);
    }
}
//Release Resources
g.Dispose();
//Add bitmap with grid to BG
ScorePictureBox.Image = myBitmap;

这段代码相当频繁:

for (int EventIndex = 0; EventIndex <= MidiNoteDownArray.Length - 1; EventIndex++)
{
    //Paint notes to grid

    e.Graphics.FillRectangle(Brushes.LightBlue, j, k, l, m);
    e.Graphics.DrawRectangle(Pens.Purple, o, p, q, r);
}
e.Dispose();

我没有正确释放资源吗?我怎样才能正确地做到这一点?

4

1 回答 1

4

你没有发布你的位图。根据您的代码运行频率,垃圾收集器可能无法跟上。

using (Bitmap myBitmap = new Bitmap(a, b))
using (Graphics g = Graphics.FromImage(myBitmap)) {
    for (int x = 0; x <= e - 1; x++) {
        for (int y = 0; y <= f - 1; y++) {
            g.DrawRectangle(Pens.LightBlue, g, h, i);
        }
    }

    ScorePictureBox.Image = myBitmap;
}

您还需要检查代码中使用 GDI 的其他部分是否有未发布的资源。

于 2012-04-19T05:48:13.297 回答