Question

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?

Was it helpful?

Solution

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>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top