public XPlatViewStyle(XPlatColor backgroundColor = null, XPlatCornerRadius cornerRadius = null, XPlatColor borderColor = null) { BackgroundColor = backgroundColor; CornerRadius = cornerRadius; BorderColor = borderColor; }
public XPlatButtonStyle(XPlatLabelStyle labelStyle = null, XPlatColor backgroundColor = null, XPlatCornerRadius cornerRadius = null, XPlatColor borderColor = null) : this(labelStyle, cornerRadius, borderColor) { BackgroundColor = backgroundColor; }
public XPlatButtonStyle(XPlatLabelStyle labelStyle = null, XPlatCornerRadius cornerRadius = null, XPlatColor borderColor = null) : base(labelStyle) { CornerRadius = cornerRadius; BorderColor = borderColor; }
public XPlatCornerRadius(XPlatCornerRadius cornerRadius) : this(cornerRadius.Radius, cornerRadius.BottomLeft, cornerRadius.BottomRight, cornerRadius.TopLeft, cornerRadius.TopRight) { }