0
我正在使用WinMobile並在模擬器上運行我的代碼。 我對設置圖像的代碼是:無法在winform中設置ListView中的圖像(c#)
ImageList il = new ImageList();
if (File.Exists(@"online1.BMP"))
il.Images.Add((Image)new Bitmap(@"c:\online1.BMP"));
出於某種原因,該條件始終爲FALSE,雖然該文件的文件夾中存在。 「File.Exists」函數是否指向手機的庫?或電腦的(如我所假設的)?
什麼是WinMobile? –