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