3 writes to IsInUpdate
PresentationFramework (3)
src\Framework\System\Windows\Data\BindingExpressionBase.cs (2)
1353IsInUpdate = true; // pretend to be in an update - as when this callback was posted 1355IsInUpdate = false;
src\Framework\System\Windows\Data\MultiBindingExpression.cs (1)
725IsInUpdate = false; // inhibit the "$10 bug" re-fetch if nothing actually updated
7 references to IsInUpdate
PresentationFramework (7)
src\Framework\System\Windows\Controls\TextBox.cs (1)
1632resetCaret = (beb != null) && beb.IsInUpdate && beb.IsInTransfer;
src\Framework\System\Windows\Data\BindingExpression.cs (3)
344if (IsTransferPending || IsInUpdate) 1486bool realTransfer = !(IsInUpdate && System.Windows.Controls.ItemsControl.EqualsEx(value, Value)); 2413if (!IsInUpdate && CanActivate)
src\Framework\System\Windows\Data\BindingExpressionBase.cs (2)
1317if (IsInUpdate && IsDynamic && StatusInternal == BindingStatusInternal.Active) 1438if (!IsInUpdate)
src\Framework\System\Windows\Data\MultiBindingExpression.cs (1)
1338bool realTransfer = !(IsInUpdate && ItemsControl.EqualsEx(value, Value));