Question

I want to create Curved TextBlock using XAML like:

enter image description here

I am doing it like this :

<TextBlock TextWrapping="Wrap" Text="TextBlock" FontSize="30" Height="46"
           Width="182" RenderTransformOrigin="0.5,0.5" HorizontalAlignment="Left"
           VerticalAlignment="Top" Canvas.ZIndex="-1" Foreground="White"
           Margin="486,125,0,0" UseLayoutRounding="False" d:LayoutRounding="Auto">
    <TextBlock.Projection>
        <PlaneProjection RotationZ="360" />
    </TextBlock.Projection>
    <TextBlock.RenderTransform>
        <CompositeTransform Rotation="-30"/>
    </TextBlock.RenderTransform>
</TextBlock>

But no success.
Can you tell me a better way?

Was it helpful?

Solution

Try to work on converting this to Windows 8:

http://www.codeproject.com/Articles/30090/Text-On-A-Path-in-WPF

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top