2 writes to _activeIndex
PresentationFramework (2)
src\Framework\System\Windows\Data\PriorityBindingExpression.cs (2)
203
_activeIndex
= NoActiveBindingExpressions;
556
_activeIndex
= newActiveIndex;
10 references to _activeIndex
PresentationFramework (10)
src\Framework\System\Windows\Data\PriorityBindingExpression.cs (10)
68
get { return (
_activeIndex
< 0) ? null : MutableBindingExpressions[
_activeIndex
]; }
78
get { return (
_activeIndex
< 0) ? false : MutableBindingExpressions[
_activeIndex
].HasValidationError; }
177
get { return (
_activeIndex
== NoActiveBindingExpressions) ? MutableBindingExpressions.Count :
_activeIndex
+ 1; }
250
if ( index !=
_activeIndex
268
_activeIndex
,
553
if (newActiveIndex !=
_activeIndex
)
555
int oldActiveIndex =
_activeIndex
;