Files
Andy (Steve) De George e9fcf43083 Merge pull request #1135 from dotnet/adegeo-links
Correct .NET Framework links that pointed to old .NET 5 URLs
2021-08-11 12:04:34 -07:00

1.7 KiB

title, ms.date, helpviewer_keywords, ms.assetid
title ms.date helpviewer_keywords ms.assetid
How to: Style Controls on a ToolBar 03/30/2017
styling controls on toolbar [WPF]
toolbars [WPF]
customizing controls on toolbar [WPF]
ba6ae056-d6a9-4c24-90f8-467ab0bc0b1a

How to: Style Controls on a ToolBar

The xref:System.Windows.Controls.ToolBar defines xref:System.Windows.ResourceKey objects to specify the style of controls within the xref:System.Windows.Controls.ToolBar. To style a control in a xref:System.Windows.Controls.ToolBar, set the x:key attribute of the style to a xref:System.Windows.ResourceKey defined in xref:System.Windows.Controls.ToolBar.

The xref:System.Windows.Controls.ToolBar defines the following xref:System.Windows.ResourceKey objects:

Example

The following example defines styles for the controls within a xref:System.Windows.Controls.ToolBar.

[!code-xamlToolBar_snip#ToolBarAllStyles]
[!code-xamlToolBar_snip#ToolBar]

See also