ImageView.cs 609 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GenericDisplayCommand.Controls.V1
  5. {
  6. public class ImageView : 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. /// <summary>
  21. /// path to picture file
  22. /// </summary>
  23. public string Src
  24. { get; set; }
  25. }
  26. }