Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WPF automatic resize font until it fits within parent control

Tags:

I have a user control who's root element is a Grid.

I also have have a ContentControl that serves as a placeholder for some text that is filled when data is loaded. This control can be moved around within the user control and so it's position can be anywhere.

If the text is too long to fit within the root Grid of the user control, I want to reduce the font size of the ContentControl until the text fits.

My problem is that I can't seem to find an event that I can handle to do this process. I tried using the ContentControl.LayoutUpdated event;however, the sender parameter for this always appears to be nothing...which is really not helpful!

I am really looking forward to any advise on how to achieve this.

Thank you

-Frinny

like image 433
Frinavale Avatar asked Feb 14 '13 18:02

Frinavale


1 Answers

Wrapping your ContentControl in a Viewbox set to only scale down will do this for you:

<Viewbox StretchDirection="DownOnly" Stretch="Uniform">     <ContentControl Content="Some Text"/> </Viewbox> 
like image 116
John Bowen Avatar answered Sep 25 '22 00:09

John Bowen