8 writes to Position
System.Windows.Forms (8)
winforms\Managed\System\WinForms\BindingNavigator.cs (1)
610bindingSource.Position = newPosition;
winforms\Managed\System\WinForms\BindingSource.cs (7)
917Position = 0; 922Position = Count - 1; 927++Position; 932--Position; 1096this.Position = (this.Count > 0 ? 0 : -1); 1804this.Position = this.Count - 1; 1828this.Position = this.addNewPos;
12 references to Position
System.Windows.Forms (12)
winforms\Managed\System\WinForms\BindingNavigator.cs (3)
517position = bindingSource.Position + 1; 594int newPosition = bindingSource.Position; 609if (newPosition != bindingSource.Position) {
winforms\Managed\System\WinForms\BindingSource.cs (9)
905index = this.Position; 1090currentItemChanged = ((null == lastCurrentItem) || (cm.Count == 0) || (lastCurrentItem != cm.Current) || (this.Position >= this.Count)); 1171if (Position < 0 || Position >= Count) { 1175RemoveAt(Position); 1196this.OnListChanged(new ListChangedEventArgs(ListChangedType.ItemChanged, this.Position)); 1394if (this.Position >= 0 && this.Position <= this.Count - 1) { 1822this.addNewPos = this.Position;