public TabListPageCollection(TabList owner)
      {
        if (owner == null)
          throw new ArgumentNullException("owner");

        this.Owner = owner;
      }
Example #2
0
            public TabListPageCollection(TabList owner)
            {
                if (owner == null)
                {
                    throw new ArgumentNullException("owner");
                }

                this.Owner = owner;
            }
            internal TabListPageCollection(TabList owner)
            {
                if (owner == null)
                {
                    throw new ArgumentNullException(nameof(owner));
                }

                _owner = owner;
            }
 public TabListControlCollection(TabList owner)
     : base(owner)
 {
 }
Example #5
0
 public TabListControlCollection(TabList owner)
     : base(owner)
 {
 }