1 override of IsBrowsable
System.Data.Common (1)
System\Data\DataColumnPropertyDescriptor.cs (1)
84
public override bool
IsBrowsable
=> Column.ColumnMapping == MappingType.Hidden ? false : base.IsBrowsable;
21 references to IsBrowsable
System.Data.Common (1)
System\Data\DataColumnPropertyDescriptor.cs (1)
84
public override bool IsBrowsable => Column.ColumnMapping == MappingType.Hidden ? false : base.
IsBrowsable
;
System.Windows.Forms (4)
System\Windows\Forms\ActiveX\AxHost.AxPropertyDescriptor.cs (2)
42
if (!
IsBrowsable
&& !IsReadOnly)
359
if (!
IsBrowsable
)
System\Windows\Forms\Controls\DataGridView\DataGridView.DataConnection.cs (2)
962
dataGridViewColumn.IsBrowsableInternal = _props[i].
IsBrowsable
;
1207
Debug.Assert(!_props[i].
IsBrowsable
|| typeof(IList).IsAssignableFrom(_props[i].PropertyType), "if the DGV does not have any columns then the properties in the currency manager should be Browsable(false) or point to sub lists");
System.Windows.Forms.Design (13)
System\ComponentModel\Design\ComponentDesigner.cs (1)
425
if (prop is { SerializationVisibility: DesignerSerializationVisibility.Hidden,
IsBrowsable
: false })
System\Windows\Forms\Design\ButtonBaseDesigner.cs (1)
28
if (prop is not null && prop.PropertyType == typeof(bool) && !prop.IsReadOnly && prop.
IsBrowsable
)
System\Windows\Forms\Design\ComboBoxDesigner.cs (1)
85
if (textProp is not null && textProp.PropertyType == typeof(string) && !textProp.IsReadOnly && textProp.
IsBrowsable
)
System\Windows\Forms\Design\ControlDesigner.cs (3)
1142
if (textProp is not null && textProp.PropertyType == typeof(string) && !textProp.IsReadOnly && textProp.
IsBrowsable
)
1178
if (dockProp is not null && dockProp.
IsBrowsable
)
1202
if (textProp is not null && textProp.
IsBrowsable
)
System\Windows\Forms\Design\DesignBindingPicker.cs (2)
1115
if (!pd.
IsBrowsable
)
1214
if (!descriptor.
IsBrowsable
)
System\Windows\Forms\Design\RadioButtonDesigner.cs (1)
22
if (prop is not null && prop.PropertyType == typeof(bool) && !prop.IsReadOnly && prop.
IsBrowsable
)
System\Windows\Forms\Design\TabControlDesigner.cs (1)
289
if (styleProp is not null && styleProp.PropertyType == typeof(bool) && !styleProp.IsReadOnly && styleProp.
IsBrowsable
)
System\Windows\Forms\Design\TabOrder.cs (1)
455
if (prop is null || !prop.
IsBrowsable
)
System\Windows\Forms\Design\TextBoxBaseDesigner.cs (1)
94
if (textProp is not null && textProp.PropertyType == typeof(string) && !textProp.IsReadOnly && textProp.
IsBrowsable
)
System\Windows\Forms\Design\ToolStripItemDesigner.cs (1)
703
if (textProp is not null && textProp.PropertyType == typeof(string) && !textProp.IsReadOnly && textProp.
IsBrowsable
)
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\Serialization\DesignerSerializationManagerTests.cs (1)
216
Assert.True(property.
IsBrowsable
);
System.Windows.Forms.Tests (2)
System\Windows\Forms\AxHost.AxPropertyDescriptorTests.cs (2)
255
Assert.True(property.
IsBrowsable
);
266
Assert.False(property.
IsBrowsable
);