Project Files

Add a file from another project (so its shared between the projects) Add > Existing Item > Select the file(s) and then press the drop-down on the right of the “Add” button and select “Add as link”. Note this isn’t possible for adding files to a shared folder, the drop-down arrow won’t be shown (you […]

Read More

Operating Systems supporting UWP apps

Universal Windows Apps UWP = Universal Windows Platform Available from the Microsoft Store on all devices that run on Windows 10 or Windows 11 Windows 10 introduced the Universal Windows Platform (UWP), which provides a common app platform on every device that runs Windows.The UWP core APIs are the same on all Windows devices. If […]

Read More

Copy existing page

Create new file pair Right click the .xaml file and select copy Select the project > Right click > Paste You will now have a duplicate of the page and its .cs source code file with ” – Copy.xaml” as its name. Right click the .xaml file and select Rename to rename both the files […]

Read More

Detecting Clicks/Touches On A Page

PointerPressed PointerPressed is a high level function that will be triggered before any control clicked / touched gets their Tapped event. Add to the Page_Loading Add to the Page_Unloaded Method that will be called

Read More