1 write to _currencyManager
System.Windows.Forms (1)
System\Windows\Forms\DataBinding\BindingSource.cs (1)
84_currencyManager = new CurrencyManager(this);
16 references to _currencyManager
System.Windows.Forms (16)
System\Windows\Forms\DataBinding\BindingSource.cs (16)
85WireCurrencyManager(_currencyManager); 150return _currencyManager; 189public object? Current => _currencyManager.Count > 0 ? _currencyManager.Current : null; 345public bool IsBindingSuspended => _currencyManager.IsBindingSuspended; 361get => _currencyManager.Position; 364if (_currencyManager.Position != value) 369_currencyManager.Position = value; 483public void CancelEdit() => _currencyManager.CancelCurrentEdit(); 560Debug.Assert(sender == _currencyManager, "only receive notifications from the currency manager"); 598UnwireCurrencyManager(_currencyManager); 622_currencyManager.EndCurrentEdit(); 884_currencyManager.PullData(out bool success); 973PropertyDescriptorCollection props = _currencyManager.GetItemProperties(); 1055public void ResumeBinding() => _currencyManager.ResumeBinding(); 1056public void SuspendBinding() => _currencyManager.SuspendBinding();