12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GenericDisplayCommand.Controls.V1
- {
- public class TextView : View
- {
-
-
-
-
- public string Gravity
- {
- get; set;
- }
- public string Text
- {
- get; set;
- }
- public string TextColor { get; set; }
- }
- }
|