Skip to content

Commit 8a6f3ba

Browse files
authored
Merge branch 'MicrosoftDocs:docs' into winget-gpo-docs
2 parents dfe3c4d + a2113b0 commit 8a6f3ba

File tree

99 files changed

+1306
-1144
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+1306
-1144
lines changed

hub/apps/design/controls/animated-icon.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -52,25 +52,6 @@ Defining a color property in your Lottie animation named "Foreground" lets you t
5252
- Please view the UX guidance for [Icons for Windows Apps](/windows/uwp/design/style/icons) to ensure your icons match the design principles.
5353
- Limit the number of animated icons on a single screen or view. Only animate icons to draw the user's attention to where they need to take action or when they are performing an action.
5454

55-
## UWP and WinUI 2
56-
57-
[!INCLUDE [uwp-winui2-note](../../../includes/uwp-winui-2-note.md)]
58-
59-
The AnimatedIcon for UWP apps requires WinUI 2. For more info, including installation instructions, see [WinUI 2](../../winui/winui2/index.md). APIs for this control exist in the [Microsoft.UI.Xaml.Controls](/windows/winui/api/microsoft.ui.xaml.controls) namespace.
60-
61-
> [!div class="checklist"]
62-
>
63-
> - **WinUI 2 Apis:** [AnimatedIcon class](/windows/winui/api/microsoft.ui.xaml.controls.animatedicon)
64-
> - [Open the WinUI 2 Gallery app and see the AnimatedIcon in action](winui2gallery:/item/AnimatedIcon). [!INCLUDE [winui-2-gallery](../../../includes/winui-2-gallery.md)]
65-
66-
[!INCLUDE [muxc-alias-note](../../../includes/muxc-alias-note.md)]
67-
68-
```xaml
69-
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
70-
71-
<muxc:AnimatedIcon />
72-
```
73-
7455
## Create an animated icon
7556

7657
> [!div class="checklist"]
@@ -234,6 +215,25 @@ private void Button_PointerExited(object sender, PointerRoutedEventArgs e)
234215
}
235216
```
236217

218+
## UWP and WinUI 2
219+
220+
[!INCLUDE [uwp-winui2-note](../../../includes/uwp-winui-2-note.md)]
221+
222+
The AnimatedIcon for UWP apps requires WinUI 2. For more info, including installation instructions, see [WinUI 2](../../winui/winui2/index.md). APIs for this control exist in the [Microsoft.UI.Xaml.Controls](/windows/winui/api/microsoft.ui.xaml.controls) namespace.
223+
224+
> [!div class="checklist"]
225+
>
226+
> - **WinUI 2 Apis:** [AnimatedIcon class](/windows/winui/api/microsoft.ui.xaml.controls.animatedicon)
227+
> - [Open the WinUI 2 Gallery app and see the AnimatedIcon in action](winui2gallery:/item/AnimatedIcon). [!INCLUDE [winui-2-gallery](../../../includes/winui-2-gallery.md)]
228+
229+
[!INCLUDE [muxc-alias-note](../../../includes/muxc-alias-note.md)]
230+
231+
```xaml
232+
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
233+
234+
<muxc:AnimatedIcon />
235+
```
236+
237237
## Related articles
238238

239239
- [Icons in Windows apps](../style/icons.md)

hub/apps/design/controls/auto-suggest-box.md

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.assetid: 1F608477-F795-4F33-92FA-F200CC243B6B
55
dev.assetid: 54F8DB8A-120A-4D79-8B5A-9315A3764C2F
66
label: Auto-suggest box
77
template: detail.hbs
8-
ms.date: 06/24/2021
8+
ms.date: 02/26/2025
99
ms.topic: article
1010
doc-status: Published
1111
ms.localizationpriority: medium
@@ -23,6 +23,7 @@ If you'd like a simple, customizable control that allows text search with a list
2323
For more info about choosing the right text control, see the [Text controls](text-controls.md) article.
2424

2525
## Anatomy
26+
2627
The entry point for the auto-suggest box consists of an optional header and a text box with optional hint text:
2728

2829
![Example of the entry point for auto-suggest control](images/controls-autosuggest-entrypoint.png)
@@ -37,19 +38,6 @@ The auto-suggest results list populates automatically once the user starts to en
3738

3839
![Example of an auto suggest box with no search results](images/controls-autosuggest-no-results.png)
3940

40-
## UWP and WinUI 2
41-
42-
[!INCLUDE [uwp-winui2-note](../../../includes/uwp-winui-2-note.md)]
43-
44-
APIs for this control exist in the [Windows.UI.Xaml.Controls](/uwp/api/Windows.UI.Xaml.Controls) namespace.
45-
46-
> [!div class="checklist"]
47-
>
48-
> - **UWP APIs:** [AutoSuggestBox class](/uwp/api/Windows.ui.xaml.controls.autosuggestbox), [TextChanged event](/uwp/api/windows.ui.xaml.controls.autosuggestbox.textchanged), [SuggestionChose event](/uwp/api/windows.ui.xaml.controls.autosuggestbox.suggestionchosen), [QuerySubmitted event](/uwp/api/windows.ui.xaml.controls.autosuggestbox.querysubmitted)
49-
> - [Open the WinUI 2 Gallery app and see the AutoSuggestBox in action](winui2gallery:/item/AutoSuggestBox). [!INCLUDE [winui-2-gallery](../../../includes/winui-2-gallery.md)]
50-
51-
We recommend using the latest [WinUI 2](../../winui/winui2/index.md) to get the most current styles and templates for all controls. WinUI 2.2 or later includes a new template for this control that uses rounded corners. For more info, see [Corner radius](../style/rounded-corner.md).
52-
5341
## Create an auto-suggest box
5442

5543
> [!div class="checklist"]
@@ -151,10 +139,18 @@ Here's an AutoSuggestBox with a 'find' icon.
151139

152140
![Example of auto-suggest control with a find icon.](images/controls-autosuggest-entrypoint.png)
153141

154-
## Get the sample code
142+
## UWP and WinUI 2
143+
144+
[!INCLUDE [uwp-winui2-note](../../../includes/uwp-winui-2-note.md)]
145+
146+
APIs for this control exist in the [Windows.UI.Xaml.Controls](/uwp/api/Windows.UI.Xaml.Controls) namespace.
147+
148+
> [!div class="checklist"]
149+
>
150+
> - **UWP APIs:** [AutoSuggestBox class](/uwp/api/Windows.ui.xaml.controls.autosuggestbox), [TextChanged event](/uwp/api/windows.ui.xaml.controls.autosuggestbox.textchanged), [SuggestionChose event](/uwp/api/windows.ui.xaml.controls.autosuggestbox.suggestionchosen), [QuerySubmitted event](/uwp/api/windows.ui.xaml.controls.autosuggestbox.querysubmitted)
151+
> - [Open the WinUI 2 Gallery app and see the AutoSuggestBox in action](winui2gallery:/item/AutoSuggestBox). [!INCLUDE [winui-2-gallery](../../../includes/winui-2-gallery.md)]
155152
156-
- [WinUI Gallery sample](https://github.com/Microsoft/WinUI-Gallery) - See all the XAML controls in an interactive format.
157-
- [AutoSuggestBox sample](https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/XamlAutoSuggestBox)
153+
We recommend using the latest [WinUI 2](../../winui/winui2/index.md) to get the most current styles and templates for all controls. WinUI 2.2 or later includes a new template for this control that uses rounded corners. For more info, see [Corner radius](../style/rounded-corner.md).
158154

159155
## Related articles
160156

hub/apps/design/controls/breadcrumbbar.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: The BreadcrumbBar control provides the direct path of pages or folders to the current location. It adapts to a variety of screen sizes.
33
title: BreadcrumbBar
44
template: detail.hbs
5-
ms.date: 04/29/2021
5+
ms.date: 02/26/2025
66
ms.topic: article
77
ms.custom: 21H1
88
ms.localizationpriority: medium
@@ -42,25 +42,6 @@ The image below shows the parts of the `BreadcrumbBar` control. You can modify t
4242
- Don't use a breadcrumb bar if you only have 2 possible levels of navigation. Simple [back navigation](../basics/navigation-history-and-backwards-navigation.md) is sufficient.
4343
- Show the current location as the last item in the breadcrumb bar. However, you typically don't want to perform any navigation if the user clicks the current item. (If you want to let the user reload the current page or data, consider providing a dedicated 'reload' option.)
4444

45-
## UWP and WinUI 2
46-
47-
[!INCLUDE [uwp-winui2-note](../../../includes/uwp-winui-2-note.md)]
48-
49-
The BreadcrumbBar for UWP apps requires WinUI 2. For more info, including installation instructions, see [WinUI 2](../../winui/winui2/index.md). APIs for this control exist in the [Microsoft.UI.Xaml.Controls](/windows/winui/api/microsoft.ui.xaml.controls) namespace.
50-
51-
> [!div class="checklist"]
52-
>
53-
> - **WinUI 2 Apis:** [BreadcrumbBar class](/windows/winui/api/microsoft.ui.xaml.controls.breadcrumbbar)
54-
> - [Open the WinUI 2 Gallery app and see the BreadcrumbBar in action](winui2gallery:/item/BreadcrumbBar). [!INCLUDE [winui-2-gallery](../../../includes/winui-2-gallery.md)]
55-
56-
[!INCLUDE [muxc-alias-note](../../../includes/muxc-alias-note.md)]
57-
58-
```xaml
59-
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
60-
61-
<muxc:BreadcrumbBar />
62-
```
63-
6445
## Create a breadcrumb bar
6546

6647
> [!div class="checklist"]
@@ -260,6 +241,25 @@ public readonly struct Crumb
260241
}
261242
```
262243

244+
## UWP and WinUI 2
245+
246+
[!INCLUDE [uwp-winui2-note](../../../includes/uwp-winui-2-note.md)]
247+
248+
The BreadcrumbBar for UWP apps requires WinUI 2. For more info, including installation instructions, see [WinUI 2](../../winui/winui2/index.md). APIs for this control exist in the [Microsoft.UI.Xaml.Controls](/windows/winui/api/microsoft.ui.xaml.controls) namespace.
249+
250+
> [!div class="checklist"]
251+
>
252+
> - **WinUI 2 Apis:** [BreadcrumbBar class](/windows/winui/api/microsoft.ui.xaml.controls.breadcrumbbar)
253+
> - [Open the WinUI 2 Gallery app and see the BreadcrumbBar in action](winui2gallery:/item/BreadcrumbBar). [!INCLUDE [winui-2-gallery](../../../includes/winui-2-gallery.md)]
254+
255+
[!INCLUDE [muxc-alias-note](../../../includes/muxc-alias-note.md)]
256+
257+
```xaml
258+
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
259+
260+
<muxc:BreadcrumbBar />
261+
```
262+
263263
## Related articles
264264

265265
- [Navigation design basics](../basics/navigation-basics.md)

hub/apps/design/controls/buttons.md

Lines changed: 23 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Buttons
33
description: Learn how to use a button to give users a way to trigger immediate actions, and learn about specialized buttons for particular tasks.
44
label: Buttons
55
template: detail.hbs
6-
ms.date: 03/04/2022
6+
ms.date: 02/26/2025
77
ms.topic: article
88
ms.assetid: f04d1a3c-7dcd-4bc8-9586-3396923b312e
99
doc-status: Published
@@ -113,30 +113,6 @@ This example uses three buttons, **Save**, **Don't Save**, and **Cancel**, in a
113113

114114
![Example of buttons, used in a dialog](images/button-dialog-example.png)
115115

116-
## UWP and WinUI 2
117-
118-
[!INCLUDE [uwp-winui2-note](../../../includes/uwp-winui-2-note.md)]
119-
120-
The DropDownButton, SplitButton, and ToggleSplitButton controls for UWP apps are included as part of WinUI 2. For more info, including installation instructions, see [WinUI 2](../../winui/winui2/index.md). APIs for these controls exist in both the [Windows.UI.Xaml.Controls](/uwp/api/Windows.UI.Xaml.Controls) and [Microsoft.UI.Xaml.Controls](/windows/winui/api/microsoft.ui.xaml.controls) namespaces.
121-
122-
> [!div class="checklist"]
123-
>
124-
> - **UWP APIs:** [Button class](/uwp/api/windows.ui.xaml.controls.button), [RepeatButton class](/uwp/api/windows.ui.xaml.controls.primitives.repeatbutton), [HyperlinkButton class](/uwp/api/windows.ui.xaml.controls.hyperlinkbutton), [DropDownButton](/uwp/api/windows.ui.xaml.controls.dropdownbutton), [SplitButton](/uwp/api/windows.ui.xaml.controls.splitbutton), [ToggleSplitButton](/uwp/api/windows.ui.xaml.controls.togglesplitbutton), [ToggleButton](/uwp/api/windows.ui.xaml.controls.primitives.togglebutton), [Click event](/uwp/api/windows.ui.xaml.controls.primitives.buttonbase.click), [Command property](/uwp/api/windows.ui.xaml.controls.primitives.buttonbase.command), [Content property](/uwp/api/windows.ui.xaml.controls.contentcontrol.content)
125-
> - **WinUI 2 Apis:** [DropDownButton](/windows/winui/api/microsoft.ui.xaml.controls.dropdownbutton), [SplitButton](/windows/winui/api/microsoft.ui.xaml.controls.splitbutton), [ToggleSplitButton](/windows/winui/api/microsoft.ui.xaml.controls.togglesplitbutton)
126-
> - [Open the WinUI 2 Gallery app and see the Button in action](winui2gallery:/item/Button). [!INCLUDE [winui-2-gallery](../../../includes/winui-2-gallery.md)]
127-
128-
We recommend using the latest [WinUI 2](../../winui/winui2/index.md) to get the most current styles and templates for all controls. WinUI 2.2 or later includes a new template for these controls that uses rounded corners. For more info, see [Corner radius](../style/rounded-corner.md).
129-
130-
[!INCLUDE [muxc-alias-note](../../../includes/muxc-alias-note.md)]
131-
132-
```xaml
133-
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
134-
135-
<muxc:DropDownButton />
136-
<muxc:SplitButton />
137-
<muxc:ToggleSplitButton />
138-
```
139-
140116
## Create a button
141117

142118
> [!div class="checklist"]
@@ -572,9 +548,29 @@ private void ApplyListStyle(string listStyle)
572548
}
573549
```
574550

575-
## Get the sample code
551+
## UWP and WinUI 2
552+
553+
[!INCLUDE [uwp-winui2-note](../../../includes/uwp-winui-2-note.md)]
554+
555+
The DropDownButton, SplitButton, and ToggleSplitButton controls for UWP apps are included as part of WinUI 2. For more info, including installation instructions, see [WinUI 2](../../winui/winui2/index.md). APIs for these controls exist in both the [Windows.UI.Xaml.Controls](/uwp/api/Windows.UI.Xaml.Controls) and [Microsoft.UI.Xaml.Controls](/windows/winui/api/microsoft.ui.xaml.controls) namespaces.
556+
557+
> [!div class="checklist"]
558+
>
559+
> - **UWP APIs:** [Button class](/uwp/api/windows.ui.xaml.controls.button), [RepeatButton class](/uwp/api/windows.ui.xaml.controls.primitives.repeatbutton), [HyperlinkButton class](/uwp/api/windows.ui.xaml.controls.hyperlinkbutton), [DropDownButton](/uwp/api/windows.ui.xaml.controls.dropdownbutton), [SplitButton](/uwp/api/windows.ui.xaml.controls.splitbutton), [ToggleSplitButton](/uwp/api/windows.ui.xaml.controls.togglesplitbutton), [ToggleButton](/uwp/api/windows.ui.xaml.controls.primitives.togglebutton), [Click event](/uwp/api/windows.ui.xaml.controls.primitives.buttonbase.click), [Command property](/uwp/api/windows.ui.xaml.controls.primitives.buttonbase.command), [Content property](/uwp/api/windows.ui.xaml.controls.contentcontrol.content)
560+
> - **WinUI 2 Apis:** [DropDownButton](/windows/winui/api/microsoft.ui.xaml.controls.dropdownbutton), [SplitButton](/windows/winui/api/microsoft.ui.xaml.controls.splitbutton), [ToggleSplitButton](/windows/winui/api/microsoft.ui.xaml.controls.togglesplitbutton)
561+
> - [Open the WinUI 2 Gallery app and see the Button in action](winui2gallery:/item/Button). [!INCLUDE [winui-2-gallery](../../../includes/winui-2-gallery.md)]
576562
577-
- [WinUI Gallery](https://github.com/Microsoft/WinUI-Gallery): This sample shows all the XAML controls in an interactive format.
563+
We recommend using the latest [WinUI 2](../../winui/winui2/index.md) to get the most current styles and templates for all controls. WinUI 2.2 or later includes a new template for these controls that uses rounded corners. For more info, see [Corner radius](../style/rounded-corner.md).
564+
565+
[!INCLUDE [muxc-alias-note](../../../includes/muxc-alias-note.md)]
566+
567+
```xaml
568+
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
569+
570+
<muxc:DropDownButton />
571+
<muxc:SplitButton />
572+
<muxc:ToggleSplitButton />
573+
```
578574

579575
## Related articles
580576

hub/apps/design/controls/calendar-date-picker.md

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Calendar date picker
44
ms.assetid: 9e0213e0-046a-4906-ba86-0b49be51ca99
55
label: Calendar date picker
66
template: detail.hbs
7-
ms.date: 06/24/2021
7+
ms.date: 02/26/2025
88
ms.topic: article
99
doc-status: Published
1010
ms.localizationpriority: medium
@@ -27,19 +27,6 @@ The entry point displays placeholder text if a date has not been set; otherwise,
2727

2828
![Screenshot of a Calendar Date Picker showing an empty select a date text box and then one populated with a calendar beneath it.](images/calendar-date-picker-2-views.png)
2929

30-
## UWP and WinUI 2
31-
32-
[!INCLUDE [uwp-winui2-note](../../../includes/uwp-winui-2-note.md)]
33-
34-
APIs for this control exist in the [Windows.UI.Xaml.Controls](/uwp/api/Windows.UI.Xaml.Controls) namespace.
35-
36-
> [!div class="checklist"]
37-
>
38-
> - **UWP APIs:** [CalendarDatePicker class](/uwp/api/Windows.UI.Xaml.Controls.CalendarDatePicker), [Date property](/uwp/api/windows.ui.xaml.controls.calendardatepicker.date), [DateChanged event](/uwp/api/windows.ui.xaml.controls.calendardatepicker.datechanged)
39-
> - [Open the WinUI 2 Gallery app and see the CalendarDatePicker in action](winui2gallery:/item/CalendarDatePicker). [!INCLUDE [winui-2-gallery](../../../includes/winui-2-gallery.md)]
40-
41-
We recommend using the latest [WinUI 2](../../winui/winui2/index.md) to get the most current styles and templates for all controls. WinUI 2.2 or later includes a new template for this control that uses rounded corners. For more info, see [Corner radius](../style/rounded-corner.md).
42-
4330
## Create a calendar date picker
4431

4532
> [!div class="checklist"]
@@ -99,9 +86,18 @@ The default placeholder text is "select a date". You can remove this by setting
9986
PlaceholderText="Choose your arrival date"/>
10087
```
10188

102-
## Get the sample code
89+
## UWP and WinUI 2
90+
91+
[!INCLUDE [uwp-winui2-note](../../../includes/uwp-winui-2-note.md)]
92+
93+
APIs for this control exist in the [Windows.UI.Xaml.Controls](/uwp/api/Windows.UI.Xaml.Controls) namespace.
94+
95+
> [!div class="checklist"]
96+
>
97+
> - **UWP APIs:** [CalendarDatePicker class](/uwp/api/Windows.UI.Xaml.Controls.CalendarDatePicker), [Date property](/uwp/api/windows.ui.xaml.controls.calendardatepicker.date), [DateChanged event](/uwp/api/windows.ui.xaml.controls.calendardatepicker.datechanged)
98+
> - [Open the WinUI 2 Gallery app and see the CalendarDatePicker in action](winui2gallery:/item/CalendarDatePicker). [!INCLUDE [winui-2-gallery](../../../includes/winui-2-gallery.md)]
10399
104-
- [WinUI Gallery sample](https://github.com/Microsoft/WinUI-Gallery) - See all the XAML controls in an interactive format.
100+
We recommend using the latest [WinUI 2](../../winui/winui2/index.md) to get the most current styles and templates for all controls. WinUI 2.2 or later includes a new template for this control that uses rounded corners. For more info, see [Corner radius](../style/rounded-corner.md).
105101

106102
## Related articles
107103

hub/apps/design/controls/calendar-view.md

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Calendar view
44
ms.assetid: d8ec5ba8-7a9d-405d-a1a5-5a1b502b9e64
55
label: Calendar view
66
template: detail.hbs
7-
ms.date: 06/24/2021
7+
ms.date: 02/26/2025
88
ms.topic: article
99
doc-status: Published
1010
ms.localizationpriority: medium
@@ -29,19 +29,6 @@ The calendar view is made up of 3 separate views: the month view, year view, and
2929

3030
Users click the header in the month view to open the year view, and click the header in the year view to open the decade view. Users pick a year in the decade view to return to the year view, and pick a month in the year view to return to the month view. The two arrows to the side of the header navigate forward or backward by month, by year, or by decade.
3131

32-
## UWP and WinUI 2
33-
34-
[!INCLUDE [uwp-winui2-note](../../../includes/uwp-winui-2-note.md)]
35-
36-
APIs for this control exist in the [Windows.UI.Xaml.Controls](/uwp/api/Windows.UI.Xaml.Controls) namespace.
37-
38-
> [!div class="checklist"]
39-
>
40-
> - **UWP APIs:** [CalendarView class](/uwp/api/Windows.UI.Xaml.Controls.CalendarView), [SelectedDatesChanged event](/uwp/api/windows.ui.xaml.controls.calendarview.selecteddateschanged)
41-
> - [Open the WinUI 2 Gallery app and see the CalendarView in action](winui2gallery:/item/CalendarView). [!INCLUDE [winui-2-gallery](../../../includes/winui-2-gallery.md)]
42-
43-
We recommend using the latest [WinUI 2](../../winui/winui2/index.md) to get the most current styles and templates for all controls. WinUI 2.2 or later includes a new template for this control that uses rounded corners. For more info, see [Corner radius](../style/rounded-corner.md).
44-
4532
## Create a calendar view
4633

4734
> [!div class="checklist"]
@@ -206,9 +193,18 @@ private void CalendarView_CalendarViewDayItemChanging(CalendarView sender,
206193
}
207194
```
208195

209-
## Get the sample code
196+
## UWP and WinUI 2
197+
198+
[!INCLUDE [uwp-winui2-note](../../../includes/uwp-winui-2-note.md)]
199+
200+
APIs for this control exist in the [Windows.UI.Xaml.Controls](/uwp/api/Windows.UI.Xaml.Controls) namespace.
201+
202+
> [!div class="checklist"]
203+
>
204+
> - **UWP APIs:** [CalendarView class](/uwp/api/Windows.UI.Xaml.Controls.CalendarView), [SelectedDatesChanged event](/uwp/api/windows.ui.xaml.controls.calendarview.selecteddateschanged)
205+
> - [Open the WinUI 2 Gallery app and see the CalendarView in action](winui2gallery:/item/CalendarView). [!INCLUDE [winui-2-gallery](../../../includes/winui-2-gallery.md)]
210206
211-
- [WinUI Gallery sample](https://github.com/Microsoft/WinUI-Gallery) - See all the XAML controls in an interactive format.
207+
We recommend using the latest [WinUI 2](../../winui/winui2/index.md) to get the most current styles and templates for all controls. WinUI 2.2 or later includes a new template for this control that uses rounded corners. For more info, see [Corner radius](../style/rounded-corner.md).
212208

213209
## Related articles
214210

0 commit comments

Comments
 (0)