20 lines
401 B
C#
20 lines
401 B
C#
|
|
|
|
|
|
namespace WPFluent.Controls;
|
|
|
|
/// <summary>
|
|
/// Defines several predefined text styles that you can apply to some elements responsible for displaying it. <para><see
|
|
/// href="https://learn.microsoft.com/en-us/windows/apps/design/style/typography"/></para>
|
|
/// </summary>
|
|
public enum FontTypography
|
|
{
|
|
Caption,
|
|
Body,
|
|
BodyStrong,
|
|
Subtitle,
|
|
Title,
|
|
TitleLarge,
|
|
Display,
|
|
}
|