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