Summary
Question:
I've got this XAML code in my application:
<Canvas Height="25" Width="75" Canvas.Top="250" Canvas.Left="250" Background="LightGray">
<TextBlock Width="75" FontSize="12" Text="This is a long line"></TextBlock>
</Canvas>
Problem is eventually the text goes beyond border of canvas. Ideally I want text string be cut right by canvas border.
I though about using text wrapping. But the TextBlock would wrap the text and continue on next line which is outside of canvas as well. Does anyone know how to do that with Silverlight?
Details
No Details Posted