7

Wp7アプリでWebブラウザーコントロールを使用していますが、AppディレクトリのWebブラウザーに画像を配置できないようです。

.csファイルや.xamlファイルと同じディレクトリのフォルダにいくつかの画像を配置しました。今、私はそれらをwebbrowserコントロールに入れようとしていますが、これを機能させることができないようです。

<img src="images/photo.jpg"/>
<img src="/images/photo.jpg"/>

上記の2つは明らかに機能しません。私の推測では、次のようになります。

<img src="/SilverlightApplication;component/photo.jpg"/>

「SilverlightApplication」と「component」は別のものに置き換える必要がありますが、何がわかりません:(

4

4 に答える 4

8

画像を分離ストレージに保存し、そこから画像を表示する必要があります。次の場所からダウンロードできるサンプルをまとめました:-

www.smartmobiledevice.co.uk/projects/webbrowserimagesample.zip

これは、MSDN の記事How to: Display Static Web Content Using the WebBrowser Control for Windows Phone に基づいています。

于 2012-04-28T12:17:00.690 に答える
5

一部の WinRT クラスが利用可能な Windows Phone 8 では、アプリの分離ストレージのファイル システム パスを取得できます。したがって、IsoStorage 内のファイルへの絶対 URL は次のようになります。

string URL = "file://" +
    Windows.Storage.ApplicationData.Current.LocalFolder.Path +
    "\\folder\\filename.png";

WebBrowser コントロールは、このような URL をNavigateToString()HTML で取得します。または、IsoStorage をベースとして指定し、全体で相対 URL を使用することもできます。isostore:URL が機能しません。試してみました。どちらもしませんms-appx://local/

完全を期すために、アプリのリソースへのファイルシステム パスを非常によく似た方法で取得できます。それだろうWindows.ApplicationModel.Package.Current.InstalledLocation.Path

于 2013-11-23T18:45:20.483 に答える
0

上記の Paul サンプル アプリケーションを連結して動的イメージを使用し、配列を動的に更新することができます。

string[] files = {
        "readme.htm", "desert.jpg", "sample.jpg"
    };

分離に書き込む前に、既存のものを削除できます

       private void SaveFilesToIsoStore()
    {
        //These files must match what is included in the application package,
        //or BinaryStream.Dispose below will throw an exception.
        string[] files = {
        "readme.htm", "desert.jpg", "sample.jpg"
    };

        IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication();
        if(isoStore.FileExists(files[0]))
        {
            isoStore.DeleteFile(files[0]);
        }

            foreach (string f in files)
            {
                StreamResourceInfo sr = Application.GetResourceStream(new Uri(f, UriKind.Relative));
                using (BinaryReader br = new BinaryReader(sr.Stream))
                {
                    byte[] data = br.ReadBytes((int)sr.Stream.Length);
                    SaveToIsoStore(f, data);
                }
            }
        }


    private void SaveToIsoStore(string fileName, byte[] data)
    {
        string strBaseDir = string.Empty;
        string delimStr = "/";
        char[] delimiter = delimStr.ToCharArray();
        string[] dirsPath = fileName.Split(delimiter);

        //Get the IsoStore.
        IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication();

        //Re-create the directory structure.
        for (int i = 0; i < dirsPath.Length - 1; i++)
        {
            strBaseDir = System.IO.Path.Combine(strBaseDir, dirsPath[i]);
            isoStore.CreateDirectory(strBaseDir);
        }

        //Remove the existing file.
        if (isoStore.FileExists(fileName))
        {
            isoStore.DeleteFile(fileName);
        }

        //Write the file.
        using (BinaryWriter bw = new BinaryWriter(isoStore.CreateFile(fileName)))
        {
            bw.Write(data);
            bw.Close();
        }
    }
于 2013-02-04T13:03:38.763 に答える