Reputation: 1227
This is probably a dumb question but I can't find the answer.
Upvotes: 0
Views: 2372
Reputation: 991
I believe you are looking for the HorizontalContentAlignment
attribute. Below is an example:
<Button Name="button" Content="Hello World" HorizontalContentAlignment="Right"/>
Upvotes: 8