2 implementations of IBindableComponent
System.Windows.Forms (2)
System\Windows\Forms\Control.cs (1)
46IBindableComponent,
System\Windows\Forms\DataBinding\BindableComponent.cs (1)
12public abstract class BindableComponent : Component, IBindableComponent
8 references to IBindableComponent
System.Windows.Forms (8)
System\Windows\Forms\DataBinding\Binding.cs (4)
170public IBindableComponent? BindableComponent { get; private set; } 183internal static bool IsComponentCreated(IBindableComponent? component) 200internal void SetBindableComponent(IBindableComponent? value) 204IBindableComponent? oldTarget = BindableComponent;
System\Windows\Forms\DataBinding\BindingContext.cs (1)
21[RequiresUnreferencedCode(IBindableComponent.ComponentModelTrimIncompatibilityMessage)]
System\Windows\Forms\DataBinding\ControlBindingsCollection.cs (3)
17private readonly IBindableComponent _control; 19public ControlBindingsCollection(IBindableComponent control) 24public IBindableComponent BindableComponent => _control;