Base:
property
BindingContext
System.Windows.Forms.Control.BindingContext
1 override of BindingContext
System.Windows.Forms (1)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (1)
216public override BindingContext? BindingContext
1 write to BindingContext
System.Windows.Forms (1)
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
262BindingContext = bm;
5 references to BindingContext
System.Windows.Forms (4)
System\Windows\Forms\ErrorProvider\ErrorProvider.cs (4)
264if (_parentControl is not null && _dataSource is not null && _parentControl.BindingContext is not null) 266_errorManager = _parentControl.BindingContext[_dataSource, _dataMember]; 302if (_parentControl is not null && _parentControl.BindingContext is not null && value is not null && !string.IsNullOrEmpty(_dataMember)) 307_errorManager = _parentControl.BindingContext[value, _dataMember];
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DataGridViewAddColumnDialog.cs (1)
715currencyManager = BindingContext?[_liveDataGridView.DataSource, _liveDataGridView.DataMember] as CurrencyManager;