I'm using a custom font known as Pigiarniq in a WPF application. I have found that from time to time, words will disappear from TextBlocks that use this font. The words that disappear would have appeared at the end of the line they are on, or perhaps on the next line, which makes me think that something is wrong with the Text wrapping. I have finally (after much difficulty) isolated the problem to a small piece of code (NOTE: this is only a test to confirm the problem occurs. This is not part of my program):
<Window x:Class="Test_the_textbox_width.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="850">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition />
</Grid.RowDefinitions>
<Grid
HorizontalAlignment="Center">
<TextBlock HorizontalAlignment="Left"
Name="textBlock1"
VerticalAlignment="Top"
FontFamily="Pigiarniq%20Regular.ttf#Pigiarniq"
TextWrapping="Wrap"
FontSize="15"
Margin="10">
<TextBlock.Text>
You do not need to enter both manually. Rates are calculated using true depositional
(uncompacted) thicknesses, rather than measured present-day thicknesses.
</TextBlock.Text>
</TextBlock>
</Grid>
</Grid>
The word "thicknesses" that occurs after "(uncompacted)" does not appear. If I resize the window manually using the window handle, it will re-appear.
NOTE: I have put the TextBlock in a Grid element above because sometimes this problem occurs when the TextBlock is in a Grid. In another instance it was inside an InlineUIContainer. There were other instances as well.
I have found that this behaviour doesn't occur if I set the width explicitly, such as if I subscribe to the Loaded event on the TextBlock:
private void textBlock1_Loaded(object sender, RoutedEventArgs e)
{
textBlock1.Width = textBlock1.ActualWidth;
//textBlock1.Width = Double.NaN; //if you leave this in, you get the bad behaviour
}
Very strange! Any ideas on how to prevent this from happening? My boss would really like to use this font, so it's not like I can just choose another font (I've never seen this happen with any other font). I'm also not too keen on the idea of watching every change in the layout and re-sizing every textblock appropriately that uses Pigiarniq.
textBlock1.Width = Double.NaN;inTextBox.Loadedeventhandler? – publicgk Mar 30 '11 at 6:17Width="850"and I'm sure you will find values that hide text from other fonts too. Your composition is a little unclear. Why do you put the Textblock within another Grid? I guess this textblock in grid in grid messes up things a little. Also, leave that Loaded event out. Can't see why this should be there. – Markus Hütter Mar 30 '11 at 11:29