30 instantiations of ListBindableAttribute
System.ComponentModel.TypeConverter (2)
System\ComponentModel\ListBindableAttribute.cs (2)
11public static readonly ListBindableAttribute Yes = new ListBindableAttribute(true); 13public static readonly ListBindableAttribute No = new ListBindableAttribute(false);
System.Data.Common (3)
System\Data\Common\DataTableMappingCollection.cs (1)
12[ListBindable(false)]
System\Data\DataColumnPropertyDescriptor.cs (1)
28attrs[attrs.Length - 1] = new ListBindableAttribute(false);
System\Data\DataTableCollection.cs (1)
19[ListBindable(false)]
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
245[System.ComponentModel.ListBindableAttribute(false)]
System.Windows.Forms (22)
System\Windows\Forms\Control.ControlCollection.cs (1)
15[ListBindable(false)]
System\Windows\Forms\Controls\ComboBox\ComboBox.ObjectCollection.cs (1)
13[ListBindable(false)]
System\Windows\Forms\Controls\DataGridView\DataGridViewCellCollection.cs (1)
13[ListBindable(false)]
System\Windows\Forms\Controls\DataGridView\DataGridViewColumnCollection.cs (1)
14[ListBindable(false)]
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.ObjectCollection.cs (1)
14[ListBindable(false)]
System\Windows\Forms\Controls\DataGridView\DataGridViewRowCollection.cs (1)
14[ListBindable(false)]
System\Windows\Forms\Controls\DataGridView\DataGridViewSelectedCellCollection.cs (1)
13[ListBindable(false)]
System\Windows\Forms\Controls\DataGridView\DataGridViewSelectedColumnCollection.cs (1)
9[ListBindable(false)]
System\Windows\Forms\Controls\DataGridView\DataGridViewSelectedRowCollection.cs (1)
13[ListBindable(false)]
System\Windows\Forms\Controls\ListBoxes\ListBox.ObjectCollection.cs (1)
17[ListBindable(false)]
System\Windows\Forms\Controls\ListView\ListView.CheckedIndexCollection.cs (1)
11[ListBindable(false)]
System\Windows\Forms\Controls\ListView\ListView.CheckedListViewItemCollection.cs (1)
11[ListBindable(false)]
System\Windows\Forms\Controls\ListView\ListView.ColumnHeaderCollection.cs (1)
11[ListBindable(false)]
System\Windows\Forms\Controls\ListView\ListView.ListViewItemCollection.cs (1)
14[ListBindable(false)]
System\Windows\Forms\Controls\ListView\ListView.SelectedIndexCollection.cs (1)
11[ListBindable(false)]
System\Windows\Forms\Controls\ListView\ListView.SelectedListViewItemCollection.cs (1)
11[ListBindable(false)]
System\Windows\Forms\Controls\ListView\ListViewGroupCollection.cs (1)
12[ListBindable(false)]
System\Windows\Forms\Controls\ToolStrips\ToolStripItemCollection.cs (1)
13[ListBindable(false)]
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.ToolStripPanelRowCollection.cs (1)
12[ListBindable(false)]
System\Windows\Forms\Controls\TreeView\TreeNode.cs (1)
774[ListBindable(false)]
System\Windows\Forms\Controls\UpDown\NumericUpDownAccelerationCollection.cs (1)
13[ListBindable(false)]
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutControlCollection.cs (1)
12[ListBindable(false)]
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ControlDesigner.DesignerControlCollection.cs (1)
14[ListBindable(false)]
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
2145[ListBindable(false)]
12 references to ListBindableAttribute
netstandard (1)
netstandard.cs (1)
368[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.ListBindableAttribute))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
354[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.ListBindableAttribute))]
System.ComponentModel.TypeConverter (4)
System\ComponentModel\ListBindableAttribute.cs (4)
11public static readonly ListBindableAttribute Yes = new ListBindableAttribute(true); 13public static readonly ListBindableAttribute No = new ListBindableAttribute(false); 15public static readonly ListBindableAttribute Default = Yes; 39return obj is ListBindableAttribute other && other.ListBindable == ListBindable;
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\DesignBindingPicker.cs (6)
1487ListBindableAttribute? listBindable = TypeDescriptor.GetAttributes(dataSource)[typeof(ListBindableAttribute)] as ListBindableAttribute; 1512ListBindableAttribute? listBindable = property.Attributes[typeof(ListBindableAttribute)] as ListBindableAttribute;