12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GenericDisplayCommand.Controls.V1
- {
- public class TextView : View
- {
- /// <summary>
- /// center_vertical, center_horizontal, top, bottom, left, right, fill_vertical, fill_horizontal
- /// center, fill
- /// </summary>
- public string Gravity
- {
- get; set;
- }
- public string Text
- {
- get; set;
- }
- public string TextColor { get; set; }
- }
- }
|