You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hub/apps/develop/win2d/index.md
+6-14Lines changed: 6 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,13 +9,13 @@ ms.localizationpriority: medium
9
9
10
10
# Win2D
11
11
12
-
> [!NOTE]
13
-
> Win2D on WinUI 3 is a work in progress. Some features are not supported, and some of the documentation still points to older WinUI2 concepts and classes. For information on using Win2D with UWP apps, see the [Win2D UWP Documentation](https://microsoft.github.io/Win2D/WinUI2/html/Introduction.htm) on GitHub.
14
-
15
-
Win2D is an easy-to-use Windows Runtime API for immediate mode 2D graphics rendering with GPU acceleration. It is available to C#, C++ and VB developers writing apps for UWP and WinAppSDK. It utilizes the power of Direct2D, and integrates seamlessly with XAML (on both UWP and WinUI 3).
12
+
Win2D is an easy-to-use Windows Runtime API for immediate mode 2D graphics rendering with GPU acceleration. It is available to C#, C++ and VB developers writing apps for UWP and WinAppSDK. It utilizes the power of Direct2D, and integrates seamlessly with XAML (on both UWP and WinAppSDK, including WinUI 3).
16
13
17
14
It's ideal for creating simple games, displays such as charts, and other simple 2D graphics.
18
15
16
+
> [!NOTE]
17
+
> Win2D on WinAppSDK (including WinUI 3) is a work in progress, and some features are not supported. The documentation refers to both the UWP and WinAppSDK versions, which mostly share the same API surface and functionality. Whenever there's any relevant differences between the two, it will be called out in the docs. When not specified, you can assume that the topics being discussed apply to both frameworks in the same way.
18
+
19
19
## Get Started
20
20
21
21
Win2D is available as a NuGet package, or as source code [on GitHub](https://github.com/microsoft/Win2D).
@@ -32,16 +32,8 @@ Add the Win2D NuGet package to your UWP or WinAppSDK app:
32
32
* Accept the license agreement.
33
33
* Click **Close**.
34
34
35
-
Next, visit [Hello Win2D World](hellowin2dworld.md) or the [Quick start](https://microsoft.github.io/Win2D/WinUI3/html/QuickStart.htm) to learn about creating a simple app.
35
+
Next, visit [Hello Win2D World](hellowin2dworld.md) or the [quick start](./quick-start.md) to learn about creating a simple app. You can also consult the [features list](./features.md) to discover all the things Win2D can do. To learn more about advanced topics, you can refer to the collection of articles included in this docs section as well.
36
36
37
37
## Reference
38
38
39
-
The [Win2D APIs](https://microsoft.github.io/Win2D/WinUI3/html/APIReference.htm).
40
-
41
-
## Articles
42
-
43
-
A list of useful [Win2D topics](https://microsoft.github.io/Win2D/WinUI3/html/Articles.htm).
Copy file name to clipboardExpand all lines: hub/apps/develop/win2d/using-win2d-without-built-in-controls.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ ms.localizationpriority: medium
11
11
12
12
[`CanvasControl`](https://microsoft.github.io/Win2D/WinUI2/html/T_Microsoft_Graphics_Canvas_UI_Xaml_CanvasControl.htm), [`CanvasVirtualControl`](https://microsoft.github.io/Win2D/WinUI2/html/T_Microsoft_Graphics_Canvas_UI_Xaml_CanvasVirtualControl.htm) and [`CanvasAnimatedControl`](https://microsoft.github.io/Win2D/WinUI2/html/T_Microsoft_Graphics_Canvas_UI_Xaml_CanvasAnimatedControl.htm) are XAML controls - they extend `UserControl` and can exist alongside other controls in an app's XAML tree. They are good choice for many WinRT apps that use XAML and produce graphical content using Win2D. While these controls are versatile, they do impose policies pertaining to layout, resource re-creation, and device lost. Apps may want to implement their own XAML controls, or not use XAML at all.
13
13
14
-
Win2D is built to support this. This document describes how to use Win2D to draw graphics without use of CanvasControl, CanvasVirtualControl or CanvasAnimatedControl.
14
+
Win2D is built to support this. This document describes how to use Win2D to draw graphics without use of `CanvasControl`, `CanvasVirtualControl` or `CanvasAnimatedControl`.
0 commit comments