Beispiel #1
0
		public Panel()
		{
			Controls = new UiControlCollection<Panel, UiControl>(this);
		}
Beispiel #2
0
		public MultiGraph() 
		{
			Graphs = new UiControlCollection<MultiGraph, Graph>(this); 
		}
Beispiel #3
0
		public MenuItem()
		{
			Items = new UiControlCollection<MenuItem, MenuItem>(this);
			InteractionType = ControlInteractionType.Click; // | ControlInteractionType.Drag; 
		}
Beispiel #4
0
		public MenuBar()
		{
			Items = new UiControlCollection<MenuBar, MenuBarItem>(this);
		}