How to add entries to ResourceDirectory in Windows 10 UWP Apps using C# ?
Below is a sample code snippet demonstrating how the entries can be added to the ResourceDirectory in Windows 10 UWP application using C#. How to add entries to ResourceDirectory in Windows 10 UWP Apps...
View ArticleDefining URLs in the UWP hosted Web apps
When developing the UWP hosted Web Apps for Windows 10 , you can define the URLs that your hosted web app can include and exclude . You generally define this in the app package manifest file by setting...
View ArticleAdding a WinJS control in JavaScript code in Windows 10 App
You can add the WinJS control to the page in the markup page or from your javascript code. How to add a WinJS control in your JavaScript code for Windows 10 Apps ? Add the element in the markup (HTML...
View ArticleCreating a Button in UWP app by specifying the namespace as one of the...
You can add a button in your Universal Windows Platform (UWP) app by simply adding the Button tag in the Xaml page. You will notice that the Namespace...
View ArticleHow to Turnoff Frame rate counter in UWP App ?
You can turn off the frame rate counter in your Universal Windows Platform (UAP) apps by following the below steps. How to Turnoff Frame rate counter in UWP App ? 1. Open your UWP project built using...
View ArticleHow to Copy Image from Assets folder to localstorage in Windows 10 ?
If you want to copy a file or image from a folder to localstorage in Windows 10 , you can use the CopyAsync method of the StorageFile class to do it. How to Copy Image from Assets folder to...
View ArticleHow to Check if a file exists in Windows Storage in UWP ?
Do you want to know if a file exists in the Windows Storage from your Universal Windows Platform (UWP) app ?. Below is a sample code snippet demonstrating how to do it. How to Check if a file exists in...
View ArticleThread.Sleep equivalent in UWP App
If you are looking for an equivanet for Thread.Sleep method in UWP apps , you can use the Task.Delay method instead. The reason for this is that Task.Delay works like a pause method for the...
View ArticleCan you run a Windows 10 Universal Apps on Windows 8.1 ?
This is one of the frequently asked question by most of the developers who are new to Windows 10 App development. Can you run a Windows 10 Universal Apps on Windows 8.1 ? In simple words , NO. The...
View Article