Without the old XAML editor I can't set the startup size of the App::Window in C++/WinRT WinUI 3.0 Desktop. I can get the Bounds(), I can set the Content().Measure(mSize);
void App::OnLaunched(LaunchActivatedEventArgs const& e)
{
oWindow = make<HV3DRoot>();
oWindow.Content().Measure(Size{ 1550,800 });
oWindow.Activate();
}
but I can't set the App starting window size. How would I start fullscreen? Why is content size 1550 x 800 and not closer to 1920 x (1080p)?