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 XPlatLabelStyle(XPlatLabelStyle style, XPlatFont font = null, XPlatTextAlignType?textAlign = null) : this((XPlatStyle)style, font ?? style.Font, textAlign ?? style.TextAlign) { }