Esempio n. 1
0
        public int Add(LED Led)
        {
            int i;

            i           = List.Add(Led);
            Led.Control = Control;
            Control.RefreshLayout();

            return(i);
        }
Esempio n. 2
0
 public void Remove(LED Led)
 {
     List.Remove(Led);
     Led.Control = null;
     Control.RefreshLayout();
 }
Esempio n. 3
0
 public bool Contains(LED Led)
 {
     return(List.Contains(Led));
 }