仅由XAML设计器抛出的PhoneApplicationPage子类化中的错误

时间:2012-08-30 09:00:22

标签: c# visual-studio-2010 xaml inheritance windows-phone-7.1

在我的Windows Phone 7.1应用程序中,我有一些以这种方式制作的页面:

<views:EntityListPage x:Class="Ribo.Smart.X.CustomersPage"
                      x:Name="MainWindow"
                      xmlns:views="clr-namespace:Ribo.Smart.X.Views"
                      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                      xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
                      xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
                      xmlns:controls="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls"
                      xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
                      xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
                      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                      xmlns:interactivity="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
                      mc:Ignorable="d"
                      d:DesignWidth="480"
                      d:DesignHeight="768" 
                      FontFamily="{StaticResource PhoneFontFamilyNormal}"
                      FontSize="{StaticResource PhoneFontSizeNormal}"
                      Foreground="{StaticResource PhoneForegroundBrush}"
                      Loaded="MainWindow_Loaded"
                      SupportedOrientations="Portrait"
                      Orientation="Portrait"
                      shell:SystemTray.IsVisible="True">
    <views:EntityListPage.Resources>
         ....
    </views:EntityListPage.Resources>

    ...
</views:EntityListPage>

这或多或少是我观点的代码隐藏:

public partial class CustomersPage : EntityListPage
{
    public CustomersPage()
    {
        InitializeComponent();
    }

    ... other stuff here ...
    ... of course I'm overriding all the methods of the base abstract class ...
    ... (see the ancestor definition) ...
}

我的EntityListPage类以下一种方式定义:

public abstract class EntityListPage : PhoneApplicationPage
{
    ... a lot of stuff here! ...
}

如果我运行此代码,一切运行良好,也没有任何类型的编译/构建错误!

但是,如果我打开CustomersPage视图的XAML设计器,它无法加载我的页面布局,它将显示下一个错误(但它不会干扰项目!):

Cannot create an instance of "EntityListPage".  

我无法弄清楚为什么设计师无法向我展示布局并给出错误,而在运行时一切正常,我没有任何问题/例外!

谢谢!

1 个答案:

答案 0 :(得分:0)

非常简单:问题出在你的EntityListPage上,这是抽象的。

如果您删除了祖先类的abstract子句,并将所有方法转换为virtual个方法(而非abstract方法,否则您需要设置整个类如abstract),你应该对设计师没有任何问题。

这是一个奇怪的错误,但它可以被管理......

希望这有帮助!