步骤:
1. 删除MainPage.xaml2. App下新建两个文件夹:devicefamily-desktop,devicefamily-mobile3. App下新建MyPage.cs类4. 两个文件夹内新建MyPage.xaml文件,注意指向的类和命名空间为MyPage.cs类和它的命名空间5. 生成项目6. 初始化组件
初始化组件:MyPage.cs
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using Windows.UI.Xaml.Controls;namespace App1{ public partial class MyPage : Page { public MyPage() { this.InitializeComponent(); // app生成后自动产生 } }}
两个文件下的MyPage.xaml
devicefamily-desktop: