The name “AppClass” does not exist in the namespace “…” when inheriting UWP Application class from another Application-based class
问题 What I want to achieve is just to inherit UWP App class not from Windows.UI.Xaml.Application class, but from some base class, inherited from the "standard" one. However, when I do it: namespace MyNamespace { sealed partial class App : MyUwpBaseApplication { public App() { this.InitializeComponent(); } } } and xaml: <local:MyUwpBaseApplication x:Class="MyNamespace.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns