Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Windowing #16223

Merged
merged 6 commits into from
Apr 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: Adjust list style
  • Loading branch information
MartinZikmund committed Apr 11, 2024
commit a6903c2caecd6da5a7fee23c73b4d018ad1cff4d
8 changes: 4 additions & 4 deletions doc/articles/features/windows-ui-xaml-window.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ uid: Uno.Features.WinUIWindow

There are several "window" types in Uno Platform apps, some are legacy only and will be removed in future releases.

- `Microsoft.UI.Xaml.Window` - the main type representing a XAML-based Window. Allows for basic manipulation and setting content.
- `Microsoft.UI.Windowing.AppWindow` - represents a general Window (may not be XAML based in case of WinUI target). Includes advanced capabilities not present on `Window` itself.
* `Microsoft.UI.Xaml.Window` - the main type representing a XAML-based Window. Allows for basic manipulation and setting content.
* `Microsoft.UI.Windowing.AppWindow` - represents a general Window (may not be XAML based in case of WinUI target). Includes advanced capabilities not present on `Window` itself.

The legacy types are:

- `Windows.UI.Core.CoreWindow`
- `Windows.UI.WindowManagement.AppWindow`
* `Windows.UI.Core.CoreWindow`
* `Windows.UI.WindowManagement.AppWindow`

While these are still available for backward compatibility purposes, they will be deprecated and no longer retrievable in future releases of Uno Platform.

Expand Down
Loading