配置pictureBox

时间:2013-03-29 06:18:06

标签: c# .net visual-studio-2010 c++-cli

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

pictureBox1->Image->Dispose();

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

pictureBox1.Image.Dispose();

我使用的是MS Visual Studio 2010。

1 个答案:

答案 0 :(得分:1)

请尝试执行以下操作,

 delete pictureBox1->Image;   // Dispose the existing bitmap, if any