<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<FlowDocument>
<Paragraph FontFamily="Palatino Linotype">
2
<Run Typography.Variants="Superscript">3</Run>
14
<Run Typography.Variants="Superscript">th </Run>
</Paragraph>
</FlowDocument>
</Window>
运行结果:
<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<FlowDocument>
<Paragraph FontFamily="Palatino Linotype">
2
<Run Typography.Variants="Superscript" >3</Run>
14
<Run Typography.Variants="Subscript" >th </Run>
</Paragraph>
</FlowDocument>
</Window>
运行结果: