Пример #1
0
 public void Insert(int index, CSSNode node)
 {
     if (_children == null)
     {
         _children = new List <CSSNode>(4);
     }
     _children.Insert(index, node);
     node._parent = new WeakReference(this);
     Native.CSSNodeInsertChild(_cssNode, node._cssNode, (uint)index);
 }