6

Suppose I have a video hosting site, like youtube. When user clicks on a link on the site, I want to open a WinRT application for a better viewing experience, how would I do that?

How do I pass parameters into the WinRT application, to let it know what video it should stream? I need to be able to go back and forth, so I assume I can introduce a hyperlink to go back to the site from the app.

The other possibility is to embed the application on the site itself. How would that work? Can you still inline an applet style application on the site itself (eg. flash/silverlight)?

4

2 に答える 2

9

アプリケーションに関連付けられている URI スキームがわかっている場合は、Windows ストア アプリを起動することができます。たとえば、ゲーム アプリにはxboxgames:が関連付けられています。その URI スキームのリンクを挿入すると、シェルはそれを内部参照として取得します。詳細はこちらをご覧ください。

ここに画像の説明を入力

Web サイトを Windows ストア アプリに接続する方法の詳細については、こちらをご覧ください。

于 2012-10-14T18:42:57.777 に答える
2

編集:関連するURLを持つことが可能です:DenDelimarskyからの受け入れられた回答を参照してください。

または、Windowsストアアプリでファイルタイプの関連付けを宣言することもできます。そのため、ユーザーにファイル(たとえば、「video.customExtension」)をダウンロードさせることができます。このファイルには、アプリが再生する必要のあるビデオなどの情報が含まれている可能性があります。会議ファイルをダウンロードして会議を開始するときにOfficeLiveMeetingで機能するのと同じ方法です。

ユーザーがその種類のファイルをWebサイトからダウンロードし、対応するアプリがインストールされていない場合、ストアでそのファイルを開くことができるアプリを探すように求められ、ユーザーはあなたのアプリを見つけます。

そして最後に、Windows8ストアアプリをWebページに埋め込むことはできません。

于 2012-10-14T17:05:47.103 に答える