示例#1
0
        public void AddControl(ILayoutable item)
        {
            CheckCurrentScreen();

            if (item == null || _items.Contains(item))
            {
                return;
            }

            _items.Add(item);
            item.AddToManagers(Layer);
        }