internal Page GetPage(Frame frame) { if (Page == null) { Page = (Page)Activator.CreateInstance(Type); Page.Frame = frame; } return Page; }
public static Action<GoBackMessage> GetAction(Frame frame) { return m => frame.GoBackAsync(); }
public static Action<NavigateMessage> GetAction(Frame frame) { return m => frame.NavigateAsync(m.Page, m.Parameter); }