0

我在 C++/CLI 中使用 Winform,我有pictureBox1并且我正在尝试编译以下代码,但它失败了:

pictureBox1->Image->Dispose();

编译器告诉Dispose is not a member of System::Drawing::Image我尝试在 C# 中使用它并且它可以工作:

pictureBox1.Image.Dispose();

我使用 MS Visual Studio 2010。

4

1 回答 1

1

请尝试执行以下操作,

 delete pictureBox1->Image;   // Dispose the existing bitmap, if any
于 2013-03-29T06:24:37.587 回答