| 123456789101112131415161718192021222324252627282930313233343536 |
- using System.Windows;
- namespace Muchinfo.MTPClient.Data.Model.Config
- {
- /// <summary>
- /// 用户布局
- /// </summary>
- public class UserLayout
- {
- ///// <summary>
- ///// 行情/图表容器GridLength
- ///// </summary>
- ///// <value>The length of the quote grid.</value>
- //[JsonIgnore]
- //public RowDefinition QuoteGridRow { get; set; }
- public double QuoteGridRowLengthValue { get; set; }
- public GridUnitType QuoteGridRowLengthUnitType { get; set; }
- public double QuoteGridRowMinHeight { get; set; }
- ///// <summary>
- ///// 查询容器GridLength
- ///// </summary>
- ///// <value>The length of the query grid.</value>
- //[JsonIgnore]
- //public RowDefinition QueryGridRow { get; set; }
- public double QueryGridRowLengthValue { get; set; }
- public GridUnitType QueryGridRowLengthUnitType { get; set; }
- public double QueryGridRowMinHeight { get; set; }
- }
- }
|