2 types derived from PropertyTab
System.Windows.Forms (2)
winforms\Managed\System\WinForms\Design\EventsTab.cs (1)
25public class EventsTab : PropertyTab {
winforms\Managed\System\WinForms\PropertyGridInternal\PropertiesTab.cs (1)
26public class PropertiesTab : PropertyTab {
40 references to PropertyTab
System.Windows.Forms (40)
winforms\Managed\System\WinForms\PropertyGrid.cs (24)
56private PropertyTab[] viewTabs = new PropertyTab[0]; 1407public PropertyTab SelectedTab { 1840PropertyTab tab = null; 1905PropertyTab[] newTabs = new PropertyTab[viewTabs.Length + 1]; 2020protected virtual PropertyTab CreatePropertyTab(Type tabType) { 2024private PropertyTab CreateTab(Type tabType, IDesignerHost host) { 2025PropertyTab tab = CreatePropertyTab(tabType); 2045tab = (PropertyTab) constructor.Invoke(new Object[] {param}); 2050tab = (PropertyTab)Activator.CreateInstance(tabType); 2453foreach (PropertyTab tab in viewTabs) { 3913PropertyTab tab = viewTabs[selectedViewTab]; 3977PropertyTab tab = null; 4053PropertyTab[] newTabs = new PropertyTab[viewTabs.Length - 1]; 4109PropertyTab[] newTabs = new PropertyTab[viewTabs.Length - 1]; 4129PropertyTab tab = null; 4144PropertyTab[] newTabs = new PropertyTab[viewTabs.Length - 1]; 4275PropertyTab oldTab = null; 5127public PropertyTab this[int index] { 5187return new PropertyTab[0].GetEnumerator();
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (3)
345public virtual PropertyTab CurrentTab{ 1140internal static IRootGridEntry Create(PropertyGridView view, object[] rgobjs, IServiceProvider baseProvider, IDesignerHost currentHost, PropertyTab tab, PropertySort initialSortType) { 1534PropertyTab tab = this.CurrentTab;
winforms\Managed\System\WinForms\PropertyGridInternal\MultiSelectRootGridEntry.cs (3)
30internal MultiSelectRootGridEntry(PropertyGridView view, object obj, IServiceProvider baseProvider, IDesignerHost host, PropertyTab tab, PropertySort sortType) 88public static MultiPropertyDescriptorGridEntry[] GetMergedProperties(object[] rgobjs, GridEntry parentEntry, PropertySort sort, PropertyTab tab) { 140private static ArrayList GetCommonProperties(object[] objs, bool presort, PropertyTab tab, GridEntry parentEntry) {
winforms\Managed\System\WinForms\PropertyGridInternal\SingleSelectRootGridEntry.cs (4)
30protected PropertyTab tab = null; 42internal SingleSelectRootGridEntry(PropertyGridView gridEntryHost, object value, GridEntry parent, IServiceProvider baseProvider, IDesignerHost host, PropertyTab tab, PropertySort sortType) 62internal SingleSelectRootGridEntry(PropertyGridView view, object value, IServiceProvider baseProvider, IDesignerHost host, PropertyTab tab, PropertySort sortType) : this(view, value,null, baseProvider, host, tab, sortType) { 127public override PropertyTab CurrentTab {
winforms\Managed\System\WinForms\PropertyTabChangedEvent.cs (6)
23private PropertyTab oldTab; 24private PropertyTab newTab; 30public PropertyTabChangedEventArgs(PropertyTab oldTab, PropertyTab newTab) { 39public PropertyTab OldTab { 49public PropertyTab NewTab {