1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GenericDisplayCommand.Controls.V1
- {
- public class ImageView : 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;
- }
- /// <summary>
- /// path to picture file
- /// </summary>
- public string Src
- { get; set; }
- }
- }
|