-
Notifications
You must be signed in to change notification settings - Fork 804
Open
Labels
Description
Describe the bug
When disabling the title bar for a window with the overlapped presenter, the window animation is missing on opening/closing.
Steps to reproduce the bug
# Get appWindow from WindowId
appWindow.IsShownInSwitchers = false;
if (appWindow.Presenter is not OverlappedPresenter appWindowOverlappedPresenter)
{
appWindowOverlappedPresenter = OverlappedPresenter.Create();
appWindow.SetPresenter(appWindowOverlappedPresenter);
} // end if
appWindowOverlappedPresenter.IsAlwaysOnTop = true;
appWindowOverlappedPresenter.IsMaximizable = false;
appWindowOverlappedPresenter.IsMinimizable = false;
appWindowOverlappedPresenter.IsResizable = false;
appWindowOverlappedPresenter.SetBorderAndTitleBar(true, false);Expected behavior
No response
Screenshots
No response
NuGet package version
Windows App SDK 1.2.1: 1.2.221116.1
Packaging type
Packaged (MSIX)
Windows version
Windows 11 version 22H2 (22621, 2022 Update)
IDE
Visual Studio 2022
Additional context
No response
Reactions are currently unavailable