How to align the text in a button to the right?
This is probably a dumb question but I can't find the an开发者_开发技巧swer.
I believe you are looking for the HorizontalContentAlignment
attribute. Below is an example:
<Button Name="button" Content="Hello World" HorizontalContentAlignment="Right"/>
精彩评论