Skip to content

Latest commit

 

History

History
46 lines (40 loc) · 1.38 KB

kb-buttons-minimize-minus-glyphs-stretched-in-pathbutton.md

File metadata and controls

46 lines (40 loc) · 1.38 KB
title page_title description type slug position tags ticketid res_type
Minimize and Minus Glyphs are Stretched When Shown in RadPathButton
Minimize and Minus Glyph Icons not Displayed Properly in RadPathButton
The Minimize and Minus font glyphs are stretched when hosted in PathButton.
troubleshooting
kb-buttons-minimize-minus-glyphs-stretched-in-pathbutton
0
glyph,icon,stretched
1459222
kb

Environment

Product Version 2019.2.618
Product RadButton for WPF

Description

The Minimize and Minus font glyphs are stretched when hosted in RadPathButton.

Solution

This happens because RadPathButton stretches its Path element by default. To change this behavior, you can set the Stretch property of the Path to None via the PathStyle property of RadPathButton.

[XAML]

{{region kb-buttons-minimize-minus-glyphs-stretched-in-pathbutton-0}} telerik:RadPathButton.PathStyle <Style TargetType="{x:Type Path}"> </Style> </telerik:RadPathButton.PathStyle> {{endregion}}