UserLayout.cs 1015 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System.Windows;
  2. namespace Muchinfo.MTPClient.Data.Model.Config
  3. {
  4. /// <summary>
  5. /// 用户布局
  6. /// </summary>
  7. public class UserLayout
  8. {
  9. ///// <summary>
  10. ///// 行情/图表容器GridLength
  11. ///// </summary>
  12. ///// <value>The length of the quote grid.</value>
  13. //[JsonIgnore]
  14. //public RowDefinition QuoteGridRow { get; set; }
  15. public double QuoteGridRowLengthValue { get; set; }
  16. public GridUnitType QuoteGridRowLengthUnitType { get; set; }
  17. public double QuoteGridRowMinHeight { get; set; }
  18. ///// <summary>
  19. ///// 查询容器GridLength
  20. ///// </summary>
  21. ///// <value>The length of the query grid.</value>
  22. //[JsonIgnore]
  23. //public RowDefinition QueryGridRow { get; set; }
  24. public double QueryGridRowLengthValue { get; set; }
  25. public GridUnitType QueryGridRowLengthUnitType { get; set; }
  26. public double QueryGridRowMinHeight { get; set; }
  27. }
  28. }