subclassing PhoneApplicationPage is not calling the inherited methods
问题 I have created a Base class like this: `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); } } }` And this child class: namespace XXX.Screens {