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 "http://schemas.microsoft.com/winfx/2006/xaml/presentation" is already referred in the Page element. <Page x:Class="ACUWPApp.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" /> You can add a button in the UWP app page by specifying the namespace as […]
↧