Пример #1
0
 public void remove_child(GuiBound p)
 {
     if (children != null)
     {
         children.Remove(p);
     }
 }
Пример #2
0
        ArrayList _children;               // used by IRemoveable

        public void add_child(GuiBound p, string type)
        {
            p.root = this;
            if (children == null)
            {
                children = new ArrayList();
            }
            children.Add(p);
            if (type != null)
            {
                p.type = type;
            }
        }
Пример #3
0
 public void remove_child( GuiBound p )
 {
     if( children != null )
         children.Remove( p );
 }
Пример #4
0
 public void add_child( GuiBound p, string type )
 {
     p.root = this;
     if( children == null )
         children = new ArrayList();
     children.Add( p );
     if( type != null )
         p.type = type;
 }