Faced the problem of resizing a UWP window.
I tried to resize the window in the XAML markup using the Height and Weight properties, the result did not give - the contents of the window are compressed in the specified sizes, and the window remains in the same proportions. I also tried to change the window initialization method:
ApplicationView.GetForCurrentView().SetPreferredMinSize(new Size { Height = 300, Width = 500 }); Similarly, the results did not give.
Please tell me how to resize the window.
Flyout/Popup/ToolTip. There are also some dialog pseudo-windows, but I'm not sure that they are completely custom - Andrey NOP