我不能在windows-phone c#的文本块中从右到左写语言。我在这里搜索它,但是它都是关于文本框的对齐。
<TextBlock HorizontalAlignment="Right" Margin="12,12,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Height="603" Width="429"/>我将水平对齐设置为右对齐,但它是关于文本块本身的对齐。
发布于 2015-07-05 05:31:14
将FlowDirection属性设置为RightToLeft:
FlowDirection="RightToLeft"https://stackoverflow.com/questions/31227413
复制相似问题