我正在尝试从我在项目中编写的控件(使用 XAML)继承。我试过空白页,但我什至无法让它工作:
<local:BlankPage
x:Class="MyNamespace.MyPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:MyNamespace"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid>
</Grid>
</local:BlankPage>
BlankPage
只是我通过向导创建的一个新的空白页派生类。MyPage
是一样的。我得到的错误是:
找不到类型“local:BlankPage”。确认您没有丢失程序集引用并且所有引用的程序集都已构建。
如何在 XAML 中为 WinRT / Windows 应用商店应用程序进行继承?