Exemple #1
0
 public static void MapTitle(PageHandler handler, IPage page)
 {
     if (handler._pageViewController != null)
     {
         handler._pageViewController.Title = page.Title;
     }
 }
Exemple #2
0
        public static void MapFrame(PageHandler handler, IView view)
        {
            ViewHandler.MapFrame(handler, view);

            // TODO MAUI: Currently the background layer frame is tied to the layout system
            // which needs to be investigated more
            handler.NativeView?.UpdateBackgroundLayerFrame();
        }
Exemple #3
0
 public static void MapTitle(PageHandler handler, IContentView page)
 {
     if (handler is INativeViewHandler invh && invh.ViewController != null)
     {
         if (page is ITitledElement titled)
         {
             invh.ViewController.Title = titled.Title;
         }
     }
 }
Exemple #4
0
 public static void MapTitle(PageHandler handler, IPage page)
 {
 }
Exemple #5
0
 public static void MapContent(PageHandler handler, IPage page)
 {
     handler.UpdateContent();
 }
Exemple #6
0
 public static void MapTitle(PageHandler handler, IContentView page)
 {
 }
Exemple #7
0
 public static void MapContent(PageHandler handler, IPage page)
 {
 }