private void OnLayoutUpdated(object sender, Xamarin.Forms.Platform.Tizen.Native.LayoutEventArgs e)
 {
     if (Control != null)
     {
         _circleImage.Geometry = Control.Geometry;
     }
 }
Exemple #2
0
        protected override void OnBackgroundLayoutUpdated(object sender, NLayoutEventArgs e)
        {
            base.OnBackgroundLayoutUpdated(sender, e);

            if (_clipper != null)
            {
                _clipper.Geometry = Control.Geometry;
                _clipper.Invalidate();
            }

            if (_shadowCanvasView != null && ShadowElement.HasShadow)
            {
                UpdateShadowGeometry();
                _shadowCanvasView.Invalidate();
            }
        }
Exemple #3
0
 void OnLayoutUpdated(object sender, Xamarin.Forms.Platform.Tizen.Native.LayoutEventArgs e)
 {
     Element.Layout(e.Geometry.ToDP());
 }
Exemple #4
0
 void OnLayoutUpdated(object sender, Xamarin.Forms.Platform.Tizen.Native.LayoutEventArgs e)
 {
     _skiaGraphicsView.Geometry = NativeView.Geometry;
     _skiaGraphicsView.Invalidate();
 }