namespace TBO.UI.tboTK
{
interface IContiner
{
bool Add(Control c);
Control Get(string id, bool deep = false);
Control Get(int x, int y, bool deep = false);
bool Remove(string id);
bool Remove(Control c);
void RemoveAll();
Control[] Controls { get; }
}
}