-
Hi everyone, I was trying to see the C++ source code for the Window and AppWindow classes, but am not able to find it. I've done searches across both microsoft-ui-xaml and WindowsAppSDK repos, first using GitHub code search and even then cloning the repo locally. For example for something concrete like the Could someone provide a link to the source files, and how you found them? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
I did not find the exact source code, but IsShownInSwitchers calls ITaskbarList::HrInit + ITaskbarList::DeleteTab |
Beta Was this translation helpful? Give feedback.
-
There doesn't seem to be anything for AppWindow, but the partial source for Window should mostly be in the directory src\dxaml\xcp\dxaml\lib. |
Beta Was this translation helpful? Give feedback.
-
Window is primarily a combination of Window_Partial.cpp, which is the direct Window APIs, and DesktopWindowImpl.cpp, which provides the underlying implementation. AppWindow is defined and implemented in a lower layer of code which is not shared. |
Beta Was this translation helpful? Give feedback.
Window is primarily a combination of Window_Partial.cpp, which is the direct Window APIs, and DesktopWindowImpl.cpp, which provides the underlying implementation.
AppWindow is defined and implemented in a lower layer of code which is not shared.