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