tags:

views:

768

answers:

1

Is there a way for me to have the Window of my WPF application resize dynamically with the content? I tried setting the width and height to auto, but no go.

+9  A: 

Set SizeToContent="WidthAndHeight" on the window and the window will dynamically resize based on its content size.

Jobi Joy