Torna al Thread
SHFILEINFO ^shInfo = gcnew SHFILEINFO();
IntPtr hImgLarge;
Drawing::Icon ^FileIcon;
hImgLarge = SHGetFileInfo(resource, 0, shInfo, Marshal::SizeOf(shInfo), SHGFI_ICON | SHGFI_LARGEICON);
FileIcon = (System::Drawing::Icon^)Drawing::Icon::FromHandle(shInfo->hIcon)->Clone();
this->listView1->LargeImageList->Images->Add(resource, FileIcon);
this->listView1->Items->Add(resource)->ImageKey = resource;