2 instantiations of ControlBindingsCollection
System.Windows.Forms (2)
System\Windows\Forms\Control.cs (1)
1623
bindings = Properties.AddValue(s_bindingsProperty, new
ControlBindingsCollection
(this));
System\Windows\Forms\DataBinding\BindableComponent.cs (1)
78
=> _dataBindings ??= new
ControlBindingsCollection
(this);
8 references to ControlBindingsCollection
System.Windows.Forms (8)
System\Windows\Forms\Control.cs (3)
1025
Properties.GetValueOrDefault<
ControlBindingsCollection
>(s_bindingsProperty)?.Clear();
1612
public
ControlBindingsCollection
DataBindings
1621
if (!Properties.TryGetValue(s_bindingsProperty, out
ControlBindingsCollection
? bindings))
System\Windows\Forms\DataBinding\BindableComponent.cs (3)
16
private
ControlBindingsCollection
? _dataBindings;
71
/// Gets the <see cref="
ControlBindingsCollection
"/> for this bindable <see cref="Component"/>.
77
public
ControlBindingsCollection
DataBindings
System\Windows\Forms\DataBinding\IBindableComponent.cs (1)
11
ControlBindingsCollection
DataBindings { get; }
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
379
public new
ControlBindingsCollection
DataBindings => base.DataBindings;