public Resource(string text, TextStyle style, Color color) { _hashString = "T:" + text + ";" + style.ToString() + ";" + GetColorString(color); _name = _hashString; _addResourceCommand = new Commands.ResourceAddText(text, style, color); }
public Resource(TextStyle textStyle) { _name = textStyle.ToString(); _hashString = "F:" + _name; _addResourceCommand = new Commands.ResourceAddFont(textStyle); }
public void CreateTextStyle(TextStyle style) { GetResourceId(new Resource(style)); }
public void Update(string text, TextStyle style, Color color) { Update(text, style, color, _layout); }
public TextView(string text, TextStyle style, Color color, TextLayout layout) { Update(text, style, color, layout); }
public TextView(string text, TextStyle style, Color color) : this(text, style, color, 0) { }