How can I get a WPF Window to expand to fit the contents of a dynamically changing ItemsControl?

StackOverflow https://stackoverflow.com/questions/3177138

  •  02-10-2019
  •  | 
  •  

문제

I've got a WPF application which starts off with a very small window. Something in the area of 200x100. When certain events are raised from an external source, I add a control to the ItemsControl area of my window. The items control is currently set to use a StackPanel PanelTemplate.

What I want, is for the application window to grow when controls are added to the itemscontrol. Is this at all possible? The idea behind this is to keep the window as small as possible at all times. It should also shrink when controls are removed from the itemscontrol.

Thanks.

도움이 되었습니까?

해결책

Yes, it is possible. You can use Window.SizeToContent property to do that. And just set a MaxHeight and MaxWidth on Window or the ItemsControl inside just so it won't keep growing and getting out of screen bounds.

다른 팁

And if you would want to set it in XAML for WPF you could use

<Window
    SizeToContent="WidthAndHeight"
>

It can be separately set for the Height and the Width if required.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top