2 writes to IsRightToLeft
PresentationFramework (2)
src\Framework\System\Windows\FrameworkElement.cs (2)
133
IsRightToLeft
= true;
3682
fe.
IsRightToLeft
= ((FlowDirection)e.NewValue) == FlowDirection.RightToLeft;
3 references to IsRightToLeft
PresentationFramework (3)
src\Framework\System\Windows\Controls\Calendar.cs (2)
1473
int moveAmmount = (!this.
IsRightToLeft
) ? -1 : 1;
1555
int moveAmmount = (!this.
IsRightToLeft
) ? 1 : -1;
src\Framework\System\Windows\FrameworkElement.cs (1)
3693
get { return
IsRightToLeft
? FlowDirection.RightToLeft : FlowDirection.LeftToRight; }