WPF文字间距

Posted 秋荷雨翔的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF文字间距相关的知识,希望对你有一定的参考价值。

代码:

技术分享图片
<ItemsControl ItemsSource="{Binding Info}" FontFamily="微软雅黑" FontSize="12" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center">
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <StackPanel Orientation="Horizontal"/>
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <Border Margin="1">
                <ContentPresenter Content="{Binding}"/>
            </Border>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>
View Code

 

以上是关于WPF文字间距的主要内容,如果未能解决你的问题,请参考以下文章

段落排版--中文字间距字母间距

ios开发如何调整文字的间距

Objective-C自定义UITextView(placeholder,长按换行,文字位置文字间距等)

段落排版--中文字间距字母间距(letter-spacing, word-spacing)

如何把keil中的代码行间距调宽

VS2010 WPF TextBlock怎么设置字间距