2

默认情况下,所有代码隐藏类都继承自PhoneApplicationPage. 我想创建一个子类PhoneApplicationPage并将其用作我的代码隐藏类的基础,如下所示:

namespace Test
{
    public partial class HistoryRemoverPage : PhoneApplicationPage
    {
        protected override void OnNavigatedTo
            (NavigationEventArgs e)
        {
            if (e.NavigationMode == NavigationMode.New)
                NavigationService.RemoveBackEntry();
        }
    }
}

namespace Test
{
    public partial class MainPage : HistoryRemoverPage 
    {
        public MainPage()
        {
            InitializeComponent();
        }
    }
}

当我尝试编译我的应用程序时,出现以下错误:

错误 1 ​​'Test.MainPage' 的部分声明不能指定不同的基类

我相信这与以下声明有关MainPage.xamlPhoneApplicationPage而不是我的子类:

电话:PhoneApplicationPage ...

但我不明白如何解决这个问题。有什么建议吗?

4

1 回答 1

6

是的,你在正确的轨道上。您需要将您的根元素更改MainPage.xaml为您的自定义基类:

<test:HistoryRemoverPage x:Class="Test.MainPage"                   
    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:test="clr-namespace:Test">

         <!--LayoutRoot is the root grid where all page content is placed-->
         <Grid x:Name="LayoutRoot" Background="Transparent">
              <!-- ... --->
         </Gird>    

</test:HistoryRemoverPage>

请注意,您需要添加您的基类命名空间 ( xmlns:test) 以便在 XAML 中指定您的基类。

于 2012-12-28T19:37:29.690 回答