Merge pull request #16 from joseartrivera/joriv/OnLaunchSize

Resize app to appropriate dimensions on first launch
This commit is contained in:
Pepe Rivera 2019-02-13 09:56:01 -08:00 коммит произвёл GitHub
Родитель 2ab114a71f 531a8a1b7b
Коммит 362b4f9d1e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -255,9 +255,9 @@ void App::OnAppLaunch(IActivatedEventArgs^ args, String^ argument)
// For very first launch, set the size of the calc as size of the default standard mode
if (!localSettings->Values->HasKey(L"VeryFirstLaunch"))
{
appView->PreferredLaunchViewSize = minWindowSize;
appView->PreferredLaunchWindowingMode = ApplicationViewWindowingMode::PreferredLaunchViewSize;
localSettings->Values->Insert(ref new String(L"VeryFirstLaunch"), false);
appView->SetPreferredMinSize(minWindowSize);
appView->TryResizeView(minWindowSize);
}
else
{