0

このコードを使用して、リンクをWPFイメージソースとして設定します。

bi3.BeginInit();
bi3.UriSource = new Uri("[here is a link]" + textBox2.Text + ".png", UriKind.RelativeOrAbsolute);
bi3.CacheOption = BitmapCacheOption.OnLoad;
bi3.EndInit();

画像へのリンクが存在するかどうかはどうすればわかりますか?前もって感謝します!

4

1 に答える 1

3
private static bool UriExit(Uri uri)
{
    try
    {
        var request = WebRequest.Create(uri) as HttpWebRequest;
        request.Method = "HEAD";
        var response = request.GetResponse() as HttpWebResponse;
        return (response.StatusCode == HttpStatusCode.OK);
    }
    catch
    {
        return false;
    }
}

以下のように呼び出します

bool val = UriExit(bi3.UriSource);
于 2012-06-03T12:59:29.333 に答える