Exemplo n.º 1
0
 public bool Remove(Widget widget)
 {
     for (int n = 0; n < placements.Count; n++)
     {
         if (placements[n].Child == widget)
         {
             placements.RemoveAt(n);
             return(true);
         }
     }
     return(false);
 }
Exemplo n.º 2
0
Arquivo: Box.cs Projeto: Clancey/xwt
 public bool Remove(Widget widget)
 {
     for (int n = 0; n < children.Count; n++)
     {
         if (children[n].Child == widget)
         {
             children.RemoveAt(n);
             return(true);
         }
     }
     return(false);
 }
Exemplo n.º 3
0
Arquivo: Box.cs Projeto: wesreid/xwt
 public bool Remove(Widget widget)
 {
     if (widget == null)
     {
         throw new ArgumentNullException("widget");
     }
     for (int n = 0; n < children.Count; n++)
     {
         if (children[n].Child == widget)
         {
             children.RemoveAt(n);
             return(true);
         }
     }
     return(false);
 }