Newer
Older
TBO / TBO / UI / tboTK / IContiner.cs
@XWolf Override XWolf Override on 24 Mar 2019 326 bytes Library
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; }
    }
}