I have a window that contains a resizable viewbox with a uniform stretch. The window frame however does not stretch uniformly. So when someone resizes the form gaps of whitespace open up along one or another edge of the form. Looks bad. Any way to force the window to only expand uniformly? (or another way to look at it, lock it to the viewbox boundaries)
Asked
Active
Viewed 4,386 times
1 Answers
2
Look at the ResizeMode
option in MainWindow
property. Set as NoResize
window size will not change at run.
You can set this as CanMinimize
, CanResize
& CanResizeWithGrip
.

Robert
- 5,278
- 43
- 65
- 115

user2567755
- 21
- 2
-
This isn't quite what I was looking for, but +1 – Jeff Jul 25 '14 at 15:30