Is there a workaround to the imposed limitation by Microsoft in order to set a Minimum Size of an UWP Application larger than 500x500? Without the limitation I would simply do:
ApplicationView.GetForCurrentView().SetPreferredMinSize(new Size(800, 600));
There was a similar question and a proposed workaround, but as stated in the comments, it provokes flickering, as it simply resizes the Window back, but does not disallow making it smaller in the first place.