Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
4answers
7k views

How do you keep the WPF window sized to content with an Expander after resize

I've got a WPF window with SizeToContent="Height". This window contains an <Expander /> that displays a list of recent activity. What I'd like is when the expander is expanded the window grows ...
4
votes
2answers
995 views

SizeToContent on UserControl

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 ...
3
votes
1answer
573 views

WPF - Trying to set the MinHeight of resizeable window based on its initial height

I am trying to set the MinHeight / MinWidth of a resizeable window based on its initial height (when SizeToContent="WidthAndHeight"). I have seen a couple of answers / solutions: ...
2
votes
1answer
94 views

Is there a panel I can use in WPF that will “defeat” SizeToContent?

I basically want certain parts of my window to not affect SizeToContent (things like a title bar) so that it appears to have no size and collapses. Is there a panel I can use to do this (like a ...
1
vote
0answers
184 views

Resizing window sizes in WPF after orientation and sizeToContent changes

I am having a problem when it comes to going from Horizontal orientation to Vertical orientation and back to Horizontal on a stackpanel with the window SizeToContent property being changed as well. ...
1
vote
1answer
358 views

WPF: Calculating window size based on content

I need to fit the window's width and height to its content. I'm aware of existance of SizeToClient property of Window, however, if one chooses WidthAndHeight as the value of SizeToClient, window ...
1
vote
1answer
808 views

Determine size of SizeToContent WPF Window before its rendered

I have a window in my WPF application that is displayed on occasion. When it is shown it is faded in with an annimation, and when closed it is faded out. Nothing fancy, just a storyboard that ...
1
vote
4answers
2k views

wpf center child window not working with sizetocontent

If i set sizetocontent to widthandheight, then WindowStartupLocation="CenterOwner" does not work properly. Instead of the center of the new window to be at the center of its parent owner, it looks ...
0
votes
1answer
142 views

How to enforce that WPF (popup) window resizes before it's visible?

I'm using a pop-up window in my WPF application. It's a borderless window with SizeToContent set to WidthAndHeight. It resizes itself every time I show it to the user in order to accomodate for ...
0
votes
3answers
205 views

SizeToContent on Window: A slow load causes window to display small, THEN resize properly

Ok, so I have a window that pops up (during normal operation of the program) at the user's request to display some context-specific information. This window happens to have a lot of elements in it, ...