15 instantiations of DefaultBindingPropertyAttribute
System.ComponentModel.TypeConverter (1)
System\ComponentModel\DefaultBindingPropertyAttribute.cs (1)
39public static readonly DefaultBindingPropertyAttribute Default = new DefaultBindingPropertyAttribute();
System.Windows.Forms (14)
System\Windows\Forms\Controls\Buttons\CheckBox.cs (1)
18[DefaultBindingProperty(nameof(CheckState))]
System\Windows\Forms\Controls\Buttons\RadioButton.cs (1)
18[DefaultBindingProperty(nameof(Checked))]
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
23[DefaultBindingProperty(nameof(Text))]
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (1)
20[DefaultBindingProperty(nameof(Value))]
System\Windows\Forms\Controls\Labels\Label.cs (1)
22[DefaultBindingProperty(nameof(Text))]
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
23[DefaultBindingProperty(nameof(SelectedValue))]
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
57[DefaultBindingProperty(nameof(SelectionRange))]
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (1)
19[DefaultBindingProperty(nameof(Image))]
System\Windows\Forms\Controls\ProgressBar\ProgressBar.cs (1)
15[DefaultBindingProperty(nameof(Value))]
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (1)
21[DefaultBindingProperty(nameof(Text))]
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
22[DefaultBindingProperty(nameof(Text))]
System\Windows\Forms\Controls\TrackBar\TrackBar.cs (1)
22[DefaultBindingProperty(nameof(Value))]
System\Windows\Forms\Controls\UpDown\DomainUpDown.cs (1)
18[DefaultBindingProperty(nameof(SelectedItem))]
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (1)
15[DefaultBindingProperty(nameof(Value))]
9 references to DefaultBindingPropertyAttribute
netstandard (1)
netstandard.cs (1)
218[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.DefaultBindingPropertyAttribute))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
204[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.DefaultBindingPropertyAttribute))]
System.ComponentModel.TypeConverter (5)
System\ComponentModel\DefaultBindingPropertyAttribute.cs (5)
15/// Initializes a new instance of the <see cref='System.ComponentModel.DefaultBindingPropertyAttribute'/> class. 22/// Initializes a new instance of the <see cref='System.ComponentModel.DefaultBindingPropertyAttribute'/> class. 36/// Specifies the default value for the <see cref='System.ComponentModel.DefaultBindingPropertyAttribute'/>, which is <see langword='null'/>. This 39public static readonly DefaultBindingPropertyAttribute Default = new DefaultBindingPropertyAttribute(); 43return obj is DefaultBindingPropertyAttribute other && other.Name == Name;
System.Windows.Forms.Tests (2)
System\Windows\Forms\Design\DesignerAttributeTests.cs (2)
120[MemberData(nameof(GetAttributeWithType_TestData), AssemblyRef_SystemWinforms, typeof(DefaultBindingPropertyAttribute))] 121public void DesignerAttributes_DefaultBindingPropertyAttribute_PropertyExists(Type type, DefaultBindingPropertyAttribute attribute)