TextView.cs 528 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GenericDisplayCommand.Controls.V1
  5. {
  6. public class TextView : View
  7. {
  8. /// <summary>
  9. /// center_vertical, center_horizontal, top, bottom, left, right, fill_vertical, fill_horizontal
  10. /// center, fill
  11. /// </summary>
  12. public string Gravity
  13. {
  14. get; set;
  15. }
  16. public string Text
  17. {
  18. get; set;
  19. }
  20. public string TextColor { get; set; }
  21. }
  22. }