How can I change the default minimum window size for my application?
I think it can be here:
Windows.UI.ViewManagement.ApplicationView...
How can I change the default minimum window size for my application?
I think it can be here:
Windows.UI.ViewManagement.ApplicationView...
this.MinimumSize = new Size(300, 200);
Just that in the forms constructor... If it is a Windows Forms application of course.
I missed it was UAP. Just do what you said from that namespace:
SetPreferredMinSize(new Size(300, 200))