Files
docs-desktop/dotnet-desktop-guide/framework/wpf/advanced/how-to-use-system-fonts-keys.md
T
Andy De George da363692ff Initial WPF content migrated (#17)
* Reset branch for WPF changes

* Convert BMP to PNG; fix link-out-of-scope err

* Add snippets for WPF... 6794 files!!!!

* Add missing snippets

* update file updated between migration

* Fix paths to include

* update breadcrumb and toc

* fix index links

* fix index links

* fix index links

* fix markdown
2020-09-04 09:46:28 -07:00

1.6 KiB

title, ms.date, helpviewer_keywords, ms.assetid
title ms.date helpviewer_keywords ms.assetid
How to: Use System Fonts Keys 03/30/2017
resource keys [WPF], SystemFonts class
036ebea7-5677-4f60-8ba4-56c9f9d9b8bd

How to: Use System Fonts Keys

System resources expose a number of system metrics as resources to help developers create visuals that are consistent with system settings. xref:System.Windows.SystemFonts is a class that contains both system font values and system font resources that bind to the values—for example, xref:System.Windows.SystemFonts.CaptionFontFamily%2A and xref:System.Windows.SystemFonts.CaptionFontFamilyKey%2A.

System font metrics can be used as either static or dynamic resources. Use a dynamic resource if you want the font metric to update automatically while the application runs; otherwise use a static resource.

Note

Dynamic resources have the keyword Key appended to the property name.

The following example shows how to access and use system font dynamic resources to style or customize a button. This [!INCLUDETLA2#tla_xaml] example creates a button style that assigns xref:System.Windows.SystemFonts values to a button.

Example

[!code-xamlSystemRes_snip#FontDynamicResources]

See also