Exemplo n.º 1
0
 public RadioBoxCollection(RadioBox owner, IEnumerable <string> collection) : this(owner)
 {
     foreach (string item in collection)
     {
         List.Add(item);
     }
 }
Exemplo n.º 2
0
 public RadioBoxCollection(RadioBox owner)
 {
     this.owner = owner;
 }