-3

私は Aforge.net サンプルを使用しており、リソースに配置されている画像の名前を取得したいと考えていました。image.tag でエラーが発生しているため、実行できません。

助けてください

4

1 に答える 1

0

You can using the Uri Class to load the path and pull the Image name from Segments collection:

Uri uri = new Uri("http://www.XXXX.com/imageName.jpg");
string fileName = uri.Segments.Last();

Edit

Let see this answers: if you like it ?

C# how to get a bitmap from a picturebox

Get bitmap file name

New Edit

System.IO.FileInfo info = new System.IO.FileInfo(Properties.Resources.Stop);
string fileName = info.Name;
于 2013-03-28T11:35:21.410 に答える