Esempio n. 1
0
		public StandBildBeitraegeStart (CommonTreeViewGroup Parent, DataRow MyDataRow)
			: base (Parent, MyDataRow)
			{
			
			}
Esempio n. 2
0
		public VideoBeitraegeStart (CommonTreeViewGroup Parent, DataRow MyDataRow)
			: base (Parent, MyDataRow)
			{
			
			}
Esempio n. 3
0
		public SendungenData (CommonTreeViewGroup Parent, DataRow MyDataRow)
			: base (Parent, MyDataRow)
			{

			}
Esempio n. 4
0
		public StandBildData (CommonTreeViewGroup Parent, DataRow MyDataRow)
			: base (Parent, MyDataRow)
			{
			TypeOfChildsToCreateList = new Type [] { typeof (StandBildSenderData) , typeof (StandBildTimingsData)};
			
			}
Esempio n. 5
0
		public TimingsData (CommonTreeViewGroup Parent, DataRow MyDataRow)
			: base (Parent, MyDataRow)
			{
			}
Esempio n. 6
0
		public SenderData(CommonTreeViewGroup Parent, DataRow MyDataRow)
			: base(Parent, MyDataRow)
			{
			TypeOfChildsToCreateList = new Type[] { typeof(TimingsData), typeof(SendungenData) };
			//, typeof (ProgrammBloeckeData)			
			}
Esempio n. 7
0
		public CommonTreeViewGroup(CommonTreeViewGroup ParentParameter, DataRow MyDataRowParameter)
			{
			if (ParentParameter == null)
				{
				return;
				}

			Parent = ParentParameter;
			DataContentRow = MyDataRowParameter;
			TableName = DataContentRow.Table.TableName;

			}
Esempio n. 8
0
		public TabellenData(CommonTreeViewGroup Parent, DataRow MyDataRow)
			: base(Parent, MyDataRow)
			{
			TypeOfChildsToCreateList = new Type[] { typeof(StandBildData) };
			}
Esempio n. 9
0
		public BeitragData (CommonTreeViewGroup Parent, DataRow MyDataRow) : base (Parent, MyDataRow)
			{
			TypeOfChildsToCreateList = new Type [] { typeof (SenderData) };
			}