2 implementations of IBindableComponent
System.Windows.Forms (2)
System\Windows\Forms\Control.cs (1)
47IBindableComponent,
System\Windows\Forms\DataBinding\BindableComponent.cs (1)
12public abstract class BindableComponent : Component, IBindableComponent
10 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;
System.Windows.Forms.Tests (2)
System\Windows\Forms\ControlBindingsCollectionTests.cs (2)
13Mock<IBindableComponent> mockBindableComponent = new(MockBehavior.Strict); 24public void Ctor_IBindableComponent(IBindableComponent control, Control expectedControl)