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