Ejemplo n.º 1
0
 public void UpdateLayout()
 {
     if (Tracker != null)
     {
         Tracker.UpdateLayout();
     }
 }
        public void UpdateLayout()
        {
            Performance.Start();
            if (Tracker != null)
            {
                Tracker.UpdateLayout();
            }

            Performance.Stop();
        }
Ejemplo n.º 3
0
 public void UpdateLayout()
 {
     Performance.Start(out string reference);
     Tracker?.UpdateLayout();
     Performance.Stop(reference);
 }
 void IVisualElementRenderer.UpdateLayout() => _tracker?.UpdateLayout();
Ejemplo n.º 5
0
 public void UpdateLayout()
 {
     Tracker?.UpdateLayout();
 }