Question

In fact the UserControl lacks the property 'SizeToContent' that we have in Window.

So the question is:

what's the easiest and right way to simulate SizeToContent=WidthAndHeight behavior on UserControl?

UPD... yeah I know it suppose to get that automatically if no Height and Width defined in the container where you're placing a user control.

But it doesn't work when you placing one userControl with defined sizes, into another with no sizes, and altogether they go inside the container.

it this case your second control will take all the space it can get.

Was it helpful?

Solution

Use a Grid and set either the Row and Column height to * for the items you want to size to the window.

OTHER TIPS

Just don't set the Width and Height properties. It will then take on whatever width and height its child requires.

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