private void UpdateScrollView()
    {
        ContentInset = new UIKit.UIEdgeInsets(0, 0, 0, 0);

        if (UIDevice.CurrentDevice.CheckSystemVersion(11, 0))
        {
            ContentInsetAdjustmentBehavior = UIKit.UIScrollViewContentInsetAdjustmentBehavior.Never;
        }

        Bounces = false;

        ScrollIndicatorInsets = new UIKit.UIEdgeInsets(0, 0, 0, 0);
    }
Esempio n. 2
0
 public EdgesExpression Inset(Edges edges, UIKit.UIEdgeInsets insets)
 {
     return(Inset(edges, insets.Top, insets.Left, insets.Bottom, insets.Right));
 }
Esempio n. 3
0
 extern static IntPtr /* NSString */ NSStringFromUIEdgeInsets(UIEdgeInsets insets);
Esempio n. 4
0
 public virtual void SetTranslatesReferenceBoundsIntoBoundaryWithInsets(UIEdgeInsets insets)
 {
 }