2 writes to IsRightToLeft
PresentationFramework (2)
System\Windows\FrameworkElement.cs (2)
136
IsRightToLeft
= true;
3683
fe.
IsRightToLeft
= ((FlowDirection)e.NewValue) == FlowDirection.RightToLeft;
3 references to IsRightToLeft
PresentationFramework (3)
System\Windows\Controls\Calendar.cs (2)
1469
int moveAmmount = (!this.
IsRightToLeft
) ? -1 : 1;
1551
int moveAmmount = (!this.
IsRightToLeft
) ? 1 : -1;
System\Windows\FrameworkElement.cs (1)
3694
get { return
IsRightToLeft
? FlowDirection.RightToLeft : FlowDirection.LeftToRight; }