コード例 #1
0
 public RadioBoxCollection(RadioBox owner, IEnumerable <string> collection) : this(owner)
 {
     foreach (string item in collection)
     {
         List.Add(item);
     }
 }
コード例 #2
0
 public RadioBoxCollection(RadioBox owner)
 {
     this.owner = owner;
 }