Re: RC0 - TextAlignment in Style Setter for Button causes System.Windows.Markup.XamlParseException:
Yes TextAlignment and TextWrapping have been removed as per the breaking change doc.
One way of getting around the alignment is just to use HorizontalContentAlignment. It of course will affect all content of the button.
The text wrapping (and for that matter the TextAlignment) can be specified on a TextBlock that is used as the content of the button. For example...
<Button VerticalContentAlignment="Bottom" HorizontalContentAlignment="Left">
<TextBlock Text="Hello world" TextWrapping="Wrap" />
</Button>
This would be the equivalent of Beta 2's
<Button Content="Hello world" TextAlignment="Left" TextWrapping="Wrap" />
Hope that helps I realize your situation maybe more complicated.