更改Picturebox的图像

时间:2013-10-19 13:49:09

标签: c++ visual-studio-2010 visual-c++

我正在编写一个c ++ windows窗体应用程序,我想通过单击列表框中的项来更改Picturebox的图像。

我搜索了几个小时,我发现很多关于使用路径和Load()的东西。但我想将它用于没有路径的资源文件。

有人可以帮帮我吗?

private: System::Void listBox1_SelectedIndexChanged(System::Object^  sender, System::EventArgs^  e) {

             curitem=listBox1->SelectedItem->ToString();
             if(curitem=="...")
             {
                richTextBox1->Text = "...";
                pictureBox1->Image = ???;
             }

         }