public XPlatLabelStyle(XPlatStyle style, XPlatFont font = null, XPlatTextAlignType?textAlign = null)
            : base(style)
        {
            this.Font = font;

            if (textAlign.HasValue)
            {
                this.TextAlign = textAlign.Value;
            }
        }
Exemple #2
0
 public XPlatStyle(XPlatStyle style)
     : this(style?.Color)
 {
 }