Exemple #1
0
 protected virtual void OnBackgroundLayoutUpdated(object sender, Native.LayoutEventArgs e)
 {
     if (_backgroundCanvas.IsValueCreated)
     {
         BackgroundCanvas.Geometry = Control.Geometry;
     }
 }
Exemple #2
0
        void OnLayoutUpdated(object sender, Native.LayoutEventArgs e)
        {
            Element.Layout(e.Geometry.ToDP());

            if (_moreOption != null && _moreOption.IsValueCreated)
            {
                _moreOption.Value.Geometry = _page.Geometry;
            }
        }
Exemple #3
0
 void OnContentLayoutUpdated(object sender, Native.LayoutEventArgs e)
 {
     UpdateContentSize();
 }
Exemple #4
0
 void OnLayoutUpdated(object sender, Native.LayoutEventArgs e)
 {
     Element.Layout(e.Geometry.ToDP());
 }
Exemple #5
0
 void OnLayoutUpdated(object sender, Native.LayoutEventArgs e)
 {
     DoLayout(e);
 }
Exemple #6
0
 void OnLayoutUpdated(object sender, Native.LayoutEventArgs e)
 {
     UpdateGeometry();
 }
Exemple #7
0
 protected void DoLayout(Native.LayoutEventArgs e)
 {
     Element.Layout(e.Geometry.ToDP());
 }