progress ring in xaml not preventing the game pad controller action?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box; 1 I have implemented the uwp loader in my xaml page to prevent the user interaction. <ProgressRing x:Name="loader" Width="70" Height="70" Foreground="White"/> but the problem is controller actions still working which allows the user interactions.Is there any possibility for preventing the controller actions while the loader is working? xaml uwp xbox share | improve this question edited Nov 14 '18 at 4:36 Haritha Es asked Nov 14 '18 at 3:59 Haritha Es Haritha Es 53 7 Also you should consider calling Progress Ring asynchronously and disable it when you dont need it. – Venkat Nov 15 '18 at 15:53 add a comment | 1 I have implemented the uwp loader in my xaml page to prevent