Pergunta

I would like to have a shape behind the textblocks so that they appear like they belong together. Kind of like a groupbox except it will be a shape with color. Anybody knows how to do that? Or any way I can do this?

Foi útil?

Solução

You can use Grid to contain shape & text block in it. Like given below. You can use Rectangle, Ellipse or Path.

<Grid>
    <Rectangle Height="25" Width="150" Fill="Red" />
    <TextBlock Text="Hello World!" FontSize="20" Width="150" />
</Grid>
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top