123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Xml.Serialization;
- namespace GenericDisplayCommand.Controls.V1
- {
- [Serializable]
- public class LinearLayout : ViewGroup
- {
- public string WeightSum
- {
- get; set;
- }
- public string Weight { get; set; }
- /// <summary>
- /// vertical or horizontal
- /// </summary>
- public string Orientation
- {
- get; set;
- }
- }
- }
|