私の Windows ストア アプリ (c#) には、ポップアップがあります。
<Popup x:Name="LoginPopup" HorizontalAlignment="Center" VerticalAlignment="Center" Width="400" Height="300" IsOpen="{Binding Path=LoginPopupIsOpen}">
<Popup.ChildTransitions>
<TransitionCollection>
<PopupThemeTransition />
</TransitionCollection>
</Popup.ChildTransitions>
</Popup>
また、Popup IsOpen の場合、Popup でのみイベントを処理し、他のすべての UI (AppBar を含む) をフリーズする必要があります。
作業領域が少ない全画面ポップアップを作成しなくても可能ですか?