Strange subfolder “DTAR_08E86330_4835_4B5C_9E5A_61F37AE1A077_DTAR” created in VS2015’s UWP solution folder

There’s actually an issue filed on Connect, which is currently reviewed by Microsoft. So brings in some room for the reasonable suspicion that this is a bug of Visual Studio 2015. There is also a workaround available: Posted by DaisyDave on 12/15/2015 at 2:40 AM Opening solutions from within the IDE stops these folders appearing.

WinRT/UWP Frame and Page caching: How to create new page instance on Navigate() and keep the page instance on GoBack()

Because there was no solution to this problem, I had to reimplement all paging relevant classes: Page, Frame, SuspensionManager, etc… The solution can be downloaded here: https://github.com/MyToolkit/MyToolkit/wiki/Paging-Overview Update: The page class now also provides the OnNavigatingFromAsync method to show for example an async popup and cancel navigation if required…

Run Windows 10 Universal Apps on Windows 8.1

The answer would be no. For further clarifications, best to post on the forum: https://social.msdn.microsoft.com/Forums/windowsapps/en-US/home?forum=wpdevelop Windows 10 introduces several new APIs and concepts (such as API contracts) that are not available on Windows 8.1. An app that relies on such new APIs and concepts cannot run on Windows 8.1. Additionally the app-model and a lot … Read more

Hide Status bar in Windows Phone 8.1 Universal Apps

With the release of Windows Phone 8.1 SDK comes a new StatusBar. The StatusBar replaces the SystemTray from Windows Phone Silverlight Apps. Unlike the SystemTray, the StausBar can only be accessed via code and some functionality has changed. StatusBar statusBar = Windows.UI.ViewManagement.StatusBar.GetForCurrentView(); // Hide the status bar await statusBar.HideAsync(); //Show the status bar await statusBar.ShowAsync(); … Read more

XAML gradient issue in UWP for some devices

Try removing the Grid.RowSpan=”2″ from the Rectangle (or add a RowDefinition), you have 4 rows (4 RowDefinition) but with the Rectangle having Grid.RowSpan=2 it adds up to 5 rows, so it might be causing you trouble. EDIT: My bad, Rectangle actually spans over rows 2 and 3 (Grid.Row=”2″), so it’s ok. Since you’re just stacking … Read more

tech