0

我创建了一个这样的基类:

`namespace XXX.Screens
{
    public partial class Settings_screen_BASE : PhoneApplicationPage
    {
        public static readonly bool DEBUG = true;

        public Settings_screen_BASE()
        {
            if (DEBUG)
                Debug.WriteLine(this.GetType() + "->" + System.Reflection.MethodBase.GetCurrentMethod().Name);
            InitializeComponent();
            if (DEBUG)
                Debug.WriteLine(this.GetType() + "<-" + System.Reflection.MethodBase.GetCurrentMethod().Name);
        }
    }
}`

而这个子类:

 namespace XXX.Screens
{
    public partial class Settings_screen_Child : Settings_screen_BASE
    {

        public Settings_screen_Child()
        {

            if (DEBUG)
                Debug.WriteLine(this.GetType() + "->" + System.Reflection.MethodBase.GetCurrentMethod().Name);
            base.InitializeComponent();
            if (DEBUG)
                Debug.WriteLine(this.GetType() + "<-" + System.Reflection.MethodBase.GetCurrentMethod().Name);
        }
    }
}

当我现在打电话时:

 this.NavigationService.Navigate(new Uri("/Screens/Settings_screen_BASE.xaml", UriKind.Relative));

它运作良好,

但是当我打电话时

  this.NavigationService.Navigate(new Uri("/Screens/Settings_screen_Child.xaml", UriKind.Relative));

我只是得到一个黑屏,调试输出没有显示任何子类的创建。

你能告诉我我在这里想念什么吗?

我原以为调用孩子会与调用基类完全相同。至少它应该调用Settings_screen_Child()

4

1 回答 1

1

不知道发生了什么。您应该确保在子页面中引用了正确的基类。我创建了自己的示例版本,它似乎对我来说效果很好。你可以在这里查看我的示例项目:http: //sdrv.ms/XLcyvR

于 2012-12-10T22:22:43.343 回答