12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Text;
- using System.Xml.Serialization;
- namespace GenericDisplayCommand.Controls.V1
- {
- [Serializable]
- public class ViewGroup : View
- {
- [XmlElement("LinearLayout", typeof(LinearLayout))]
- [XmlElement("VideoView", typeof(VideoView))]
- [XmlElement("TextView", typeof(TextView))]
- [XmlElement("ImageView", typeof(ImageView))]
- [XmlElement("NozzleView", typeof(NozzleView))]
- [XmlElement("PumpView", typeof(PumpView))]
- [XmlElement("GridView", typeof(GridView))]
- [XmlElement("ListView", typeof(ListView))]
- public List<View> Views = new List<View>();
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
- }
|