LinearLayout.cs 500 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Xml.Serialization;
  5. namespace GenericDisplayCommand.Controls.V1
  6. {
  7. [Serializable]
  8. public class LinearLayout : ViewGroup
  9. {
  10. public string WeightSum
  11. {
  12. get; set;
  13. }
  14. public string Weight { get; set; }
  15. /// <summary>
  16. /// vertical or horizontal
  17. /// </summary>
  18. public string Orientation
  19. {
  20. get; set;
  21. }
  22. }
  23. }