FontStyles 类

定义

提供一组静态预定义 FontStyle 值。

public ref class FontStyles abstract sealed
public static class FontStyles
type FontStyles = class
Public Class FontStyles
继承
FontStyles

示例

在下面的代码示例中,NormalItalic、 和 Oblique 用于定义 对象的字体样式TextBlock

<TextBlock FontStyle="Normal">Normal font style</TextBlock>
<TextBlock FontStyle="Italic">Italic font style</TextBlock>
<TextBlock FontStyle="Oblique">Oblique font style</TextBlock>

注解

字体样式是指字体的倾斜:普通、斜体和倾斜。

字形 描述
普通 普通或罗马字体中的字符是直立的。
斜体 斜体字体中的字符是真正倾斜的,并像设计的那样显示。
Oblique 斜体字体中的字符是人为倾斜的

对于 Oblique,倾斜是通过对普通字体中的字符执行剪切转换来实现的。 当真正的斜体字体在计算机或打印机上不可用时,可以从普通字体生成斜体样式,并用于模拟斜体字体。

下图显示了 Palatino Linotype 字体的法线、斜体和斜体字体样式。 请注意,斜体字体与倾斜字体样式相比,斜体字体具有更流畅且更具视觉吸引力的外观,而倾斜字体样式只是通过扭曲文本的正常字体样式而创建的。

正常、斜体和斜体字体样式
字体样式示例

属性

Italic

指定一个斜体 FontStyle

Normal

指定一个普通 FontStyle

Oblique

指定一个倾斜 FontStyle

适用于

另请参阅