1 write to _owner
System.Windows.Forms (1)
System\Windows\Forms\Controls\TabControl\TabControl.TabPageCollection.cs (1)
23_owner = owner.OrThrowIfNull();
14 references to _owner
System.Windows.Forms (14)
System\Windows\Forms\Controls\TabControl\TabControl.TabPageCollection.cs (14)
28get => _owner.GetTabPage(index); 29set => _owner.SetTabPage(index, value); 71public int Count => _owner.TabCount; 85_owner.Controls.Add(value); 223_owner.InsertItem(index, tabPage); 227_owner.InsertingItem = true; 228_owner.Controls.Add(tabPage); 232_owner.InsertingItem = false; 235_owner.Controls.SetChildIndex(tabPage, index); 295public virtual void Clear() => _owner.RemoveAll(); 300Array.Copy(_owner.GetTabPages(), 0, dest, index, Count); 306TabPage[] tabPages = _owner.GetTabPages(); 319_owner.Controls.Remove(value); 334public void RemoveAt(int index) => _owner.Controls.RemoveAt(index);