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 |
Product Version | 2019.2.618 |
Product | RadButton for WPF |
The Minimize and Minus font glyphs are stretched when hosted in RadPathButton.
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.
{{region kb-buttons-minimize-minus-glyphs-stretched-in-pathbutton-0}} telerik:RadPathButton.PathStyle <Style TargetType="{x:Type Path}"> </Style> </telerik:RadPathButton.PathStyle> {{endregion}}