123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Xml.Serialization;
- namespace GenericDisplayCommand.Controls
- {
- [Serializable]
- public abstract class View
- {
- public string Id
- {
- get; set;
- }
-
-
-
- public string Height
- {
- get; set;
- }
-
-
-
- public string Width
- {
- get; set;
- }
-
-
-
- public string Background
- {
- get; set;
- }
- public string PaddingLeft
- {
- get; set;
- }
- public string PaddingTop
- {
- get; set;
- }
- public string PaddingRight
- {
- get; set;
- }
- public string PaddingBottom
- {
- get; set;
- }
- public Scrollbars_Values[] Scrollbars
- {
- get; set;
- }
-
- public List<AllowAction> AllowActions
- {
- get; set;
- }
- public string ActionValue
- { get; set; }
- }
- [Serializable]
- public enum AllowAction
- {
- None,
-
-
-
- Submit,
-
-
-
- Select,
-
-
-
- Drag,
-
-
-
- Drop,
- }
- [Serializable]
- public enum Scrollbars_Values
- {
-
- None,
-
- Horizontal,
-
- Vertical,
- }
- }
|