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