コード例 #1
0
 public SideBarItemCollection(SideBar owner)
 {
     if (owner == null)
     {
         throw new ArgumentNullException("owner");
     }
     this._owner = owner;
 }
コード例 #2
0
 public ControlCollection(SideBar owner) : base(owner)
 {
     if (owner == null)
     {
         throw new ArgumentNullException("owner");
     }
     this._owner = owner;
 }
コード例 #3
0
 public override void Initialize(IComponent component)
 {
     this._owner = (SideBar)component;
     base.Initialize(component);
 }