fix(controls): Remove FlowDirection Trigger from RadioButton.xaml #1616
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Setting HorizontalAlignment=Right when FlowDirection is RightToLeft achieves the exact opposite of the desired if the RadioButton's parent is also set to RightToLeft. This apparently also prevents any derived styles (and even direct control properties) from changing this behavior.
Pull request type
Please check the type of change your PR introduces:
What is the current behavior?
A RadioButton that uses
DefaultRadioButtonStyleand has both its own and parent'sFlowDirectionset toRightToLeftwill be forced to visual left alignment with no way to change it. (RightToLeft switches the display ofHorizontalAlignmentso that left alignment actually becomes right alignment and vice versa)What is the new behavior?
The style no longer forces
HorizontalAlignmentthroughFlowDirectiontrigger and lets the library user full control of this behavior.