0

Windows Phone 8 の開発で進行状況インジケーターを回転させることは可能ですか? 同じことを達成するためにサンプルを提供してください。

前もって感謝します。

4

2 に答える 2

4

Spinner UI は、Windows Phone のネイティブ ユーザー エクスペリエンスの一部ではなく、WP7/WP8 では奇妙で場違いに見えます。保留中のアクションを示すために、ページの上部に不確定な進行状況バーを使用することを検討してください。

あなたが探している Google 用語は SystemTray.ProgresIndicator です。例 @ http://blog.duc.as/2011/10/08/using-the-system-tray-to-show-progress-in-windows-phone-7-mango/

<shell:SystemTray.ProgressIndicator>
    <shell:ProgressIndicator IsIndeterminate="true" IsVisible="True" Text="Click me..." />
</shell:SystemTray.ProgressIndicator>
ProgressIndicator progress = new ProgressIndicator
{
    IsVisible = true,
    IsIndeterminate = true,
    Text = "Downloading details..."
};
SystemTray.SetProgressIndicator(this, progress);
于 2013-01-16T07:02:56.653 に答える
0

カスタムの不確定進行状況バーを独自に作成するためのドキュメントと例を次に示します。例はまだ長方形ですが、必要に応じて調整できます。

http://msdn.microsoft.com/en-us/library/windowsphone/develop/gg442303%28v=vs.105%29.aspx

于 2013-01-16T10:32:20.867 に答える