1 override of IsBrowsable
System.Data.Common (1)
System\Data\DataColumnPropertyDescriptor.cs (1)
84public override bool IsBrowsable => Column.ColumnMapping == MappingType.Hidden ? false : base.IsBrowsable;
21 references to IsBrowsable
System.Data.Common (1)
System\Data\DataColumnPropertyDescriptor.cs (1)
84public override bool IsBrowsable => Column.ColumnMapping == MappingType.Hidden ? false : base.IsBrowsable;
System.Windows.Forms (4)
System\Windows\Forms\ActiveX\AxHost.AxPropertyDescriptor.cs (2)
42if (!IsBrowsable && !IsReadOnly) 359if (!IsBrowsable)
System\Windows\Forms\Controls\DataGridView\DataGridView.DataConnection.cs (2)
962dataGridViewColumn.IsBrowsableInternal = _props[i].IsBrowsable; 1207Debug.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)
425if (prop is { SerializationVisibility: DesignerSerializationVisibility.Hidden, IsBrowsable: false })
System\Windows\Forms\Design\ButtonBaseDesigner.cs (1)
28if (prop is not null && prop.PropertyType == typeof(bool) && !prop.IsReadOnly && prop.IsBrowsable)
System\Windows\Forms\Design\ComboBoxDesigner.cs (1)
85if (textProp is not null && textProp.PropertyType == typeof(string) && !textProp.IsReadOnly && textProp.IsBrowsable)
System\Windows\Forms\Design\ControlDesigner.cs (3)
1142if (textProp is not null && textProp.PropertyType == typeof(string) && !textProp.IsReadOnly && textProp.IsBrowsable) 1178if (dockProp is not null && dockProp.IsBrowsable) 1202if (textProp is not null && textProp.IsBrowsable)
System\Windows\Forms\Design\DesignBindingPicker.cs (2)
1115if (!pd.IsBrowsable) 1214if (!descriptor.IsBrowsable)
System\Windows\Forms\Design\RadioButtonDesigner.cs (1)
22if (prop is not null && prop.PropertyType == typeof(bool) && !prop.IsReadOnly && prop.IsBrowsable)
System\Windows\Forms\Design\TabControlDesigner.cs (1)
289if (styleProp is not null && styleProp.PropertyType == typeof(bool) && !styleProp.IsReadOnly && styleProp.IsBrowsable)
System\Windows\Forms\Design\TabOrder.cs (1)
455if (prop is null || !prop.IsBrowsable)
System\Windows\Forms\Design\TextBoxBaseDesigner.cs (1)
94if (textProp is not null && textProp.PropertyType == typeof(string) && !textProp.IsReadOnly && textProp.IsBrowsable)
System\Windows\Forms\Design\ToolStripItemDesigner.cs (1)
703if (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)
216Assert.True(property.IsBrowsable);
System.Windows.Forms.Tests (2)
System\Windows\Forms\AxHost.AxPropertyDescriptorTests.cs (2)
255Assert.True(property.IsBrowsable); 266Assert.False(property.IsBrowsable);