9 references to BindableSupport
netstandard (1)
netstandard.cs (1)
186[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.BindableSupport))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
172[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.BindableSupport))]
System.ComponentModel.TypeConverter (7)
System\ComponentModel\BindableAttribute.cs (4)
54public BindableAttribute(BindableSupport flags) : this(flags, BindingDirection.OneWay) 61public BindableAttribute(BindableSupport flags, BindingDirection direction) 63Bindable = (flags != BindableSupport.No); 64_isDefault = (flags == BindableSupport.Default);
System\ComponentModel\ListBindableAttribute.cs (3)
24public ListBindableAttribute(BindableSupport flags) 26ListBindable = (flags != BindableSupport.No); 27_isDefault = (flags == BindableSupport.Default);