1 write to bindingSource
System.Windows.Forms (1)
winforms\Managed\System\WinForms\BindingNavigator.cs (1)
269
WireUpBindingSource(ref
bindingSource
, value);
22 references to bindingSource
System.Windows.Forms (22)
winforms\Managed\System\WinForms\BindingNavigator.cs (22)
265
return
bindingSource
;
509
if (
bindingSource
== null) {
516
count =
bindingSource
.Count;
517
position =
bindingSource
.Position + 1;
518
allowNew = (
bindingSource
as IBindingList).AllowNew;
519
allowRemove = (
bindingSource
as IBindingList).AllowRemove;
589
if (positionItem == null ||
bindingSource
== null) {
594
int newPosition =
bindingSource
.Position;
609
if (newPosition !=
bindingSource
.Position) {
610
bindingSource
.Position = newPosition;
632
if (
bindingSource
!= null) {
633
bindingSource
.MoveFirst();
644
if (
bindingSource
!= null) {
645
bindingSource
.MovePrevious();
656
if (
bindingSource
!= null) {
657
bindingSource
.MoveNext();
668
if (
bindingSource
!= null) {
669
bindingSource
.MoveLast();
680
if (
bindingSource
!= null) {
681
bindingSource
.AddNew();
692
if (
bindingSource
!= null) {
693
bindingSource
.RemoveCurrent();