有没有办法在 WPF 中使用字母间距

is there any way to use letter spacing in WPF

我正在开发 WPF 应用程序,我想在其中格式化驻留在 TextBlock 控件中的文本。

我想在 WPF 中实现字母间距。

提前致谢。 :)

我尝试了 Glyphs 和 FontStretch,但无法轻松获得我想要的结果。我能够想出一种适合我的目的的方法。也许它也适用于其他人。

<ItemsControl ItemsSource="{Binding SomeString}">
        <ItemsControl.ItemsPanel>
            <ItemsPanelTemplate>
                <StackPanel Orientation="Horizontal" />
            </ItemsPanelTemplate>
        </ItemsControl.ItemsPanel>
        <ItemsControl.ItemTemplate>
            <DataTemplate>
                <TextBlock Text="{Binding}" 
                           Margin="0,0,5,0"/>
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>