Skip to content

Commit 2ab07a6

Browse files
committed
Merge branch 'main' into alvinashcraft/main-update-defaultsettings-app
2 parents 945e083 + 55312ad commit 2ab07a6

File tree

13 files changed

+859
-338
lines changed

13 files changed

+859
-338
lines changed

hub/android/wsa/release-notes.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ ms.date: 03/15/2023
1313

1414
These release notes are based on updates to the Windows Subsystem for Android™️. For basic information on how to install and run Android™️ apps on Windows, see the Support article: [Installing the Amazon Appstore and Android™️ Apps](https://support.microsoft.com/windows/mobile-apps-and-the-windows-subsystem-for-android-f8d0abb5-44ad-47d8-b9fb-ad6b1459ff6c).
1515

16+
## Build 2303.40000.3.0
17+
18+
April 11, 2023
19+
20+
- Picture-in-picture mode now supported
21+
- A new "Partially running" system setting added to WSA Settings app, which runs the subsystem with minimal resources but apps launch quicker than "As needed" mode
22+
- Linux kernel updated to 5.15.78
23+
- Improvements to platform reliability
24+
- Android 13 security updates
25+
1626
## Build 2302.4000
1727

1828
March 15, 2023

hub/apps/design/basics/navigate-between-two-pages.md

Lines changed: 634 additions & 211 deletions
Large diffs are not rendered by default.

hub/apps/design/basics/navigation-basics.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.custom: RS5
1717

1818
If you think of an app as a collection of pages, *navigation* describes the act of moving between pages and within a page. It's the starting point of the user experience, and it's how users find the content and features they're interested in. It's very important, and it can be difficult to get right.
1919

20-
We have a huge number of choices to make for navigation. We could:
20+
You have a huge number of choices to make for navigation. You could:
2121

2222
:::row:::
2323
:::column:::
@@ -139,7 +139,7 @@ We recommend a hierarchical structure when:
139139
:::column span="2":::
140140
### Combining structures
141141

142-
You don't have to choose one structure or the other; many well-design apps use both. An app can use flat structures for top-level pages that can be viewed in any order, and hierarchical structures for pages that have more complex relationships.
142+
You don't have to choose one structure or the other; many well-designed apps use both. An app can use flat structures for top-level pages that can be viewed in any order, and hierarchical structures for pages that have more complex relationships.
143143

144144
If your navigation structure has multiple levels, we recommend that peer-to-peer navigation elements only link to the peers within their current subtree. Consider the adjacent illustration, which shows a navigation structure that has two levels:
145145

@@ -150,14 +150,14 @@ If your navigation structure has multiple levels, we recommend that peer-to-peer
150150

151151
## Use the right controls
152152

153-
Once you've decided on a page structure, you need to decide how users navigate through those pages. UWP provides a variety of navigation controls to help ensure a consistent, reliable navigation experience in your app.
153+
Once you've decided on a page structure, you need to decide how users navigate through those pages. XAML provides a variety of navigation controls to help ensure a consistent, reliable navigation experience in your app.
154154

155155
:::row:::
156156
:::column:::
157157
![Frame image](images/nav/thumbnail-frame.svg)
158158
:::column-end:::
159159
:::column span="2":::
160-
[**Frame**](/uwp/api/Windows.UI.Xaml.Controls.Frame)
160+
[**Frame**](/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.controls.frame)
161161

162162
With few exceptions, any app that has multiple pages uses a frame. Typically, an app has a main page that contains the frame and a primary navigation element, such as a navigation view control. When the user selects a page, the frame loads and displays it.
163163
:::column-end:::
@@ -237,7 +237,7 @@ Displays a vertical list of links to top-level pages. Use when:
237237
[**List/details**](../controls/list-details.md)
238238

239239
Displays a list of items. Selecting an item displays its corresponding page in the details section. Use when:
240-
240+
241241
- You expect users to switch between child items frequently.
242242
- You want to enable the user to perform high-level operations, such as deleting or sorting, on individual items or groups of items, and also want to enable the user to view or update the details for each item.
243243

@@ -258,4 +258,4 @@ Embedded navigation elements can appear in a page's content. Unlike other naviga
258258

259259
## Next: Add navigation code to your app
260260

261-
The next article, [Implement basic navigation](navigate-between-two-pages.md), shows the code required to use a Frame control to enable basic navigation between two pages in your app.
261+
The next article, [Implement basic navigation](navigate-between-two-pages.md), shows the code required to use a `Frame` control to enable basic navigation between two pages in your app.

hub/apps/get-started/enable-your-device-for-development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom: seo-windows-dev
1313
![Enable your devices for development](./images/developer-poster.png)
1414

1515
> [!IMPORTANT]
16-
> If you're not creating your own applications on your PC, you don't need to enable Developer Mode. If you're trying to fix an issue with your computer, check out [Windows help](/windows). If you're developing for the first time, you'll also want to [Install tools for the Windows App SDK](/windows-app-sdk/set-up-your-development-environment).
16+
> If you're not creating your own applications on your PC, you don't need to enable Developer Mode. If you're trying to fix an issue with your computer, check out [Windows help](/windows). If you're developing for the first time, you'll also want to [Install tools for the Windows App SDK](/windows/apps/windows-app-sdk/set-up-your-development-environment).
1717
1818
If you're using your computer for ordinary day-to-day activities (such as gaming, web browsing, email, or Office apps), you *don't* need to activate Developer Mode, and in fact, you shouldn't activate it. The rest of the information on this page won't matter to you, and you can safely get back to whatever you were doing. Thanks for stopping by!
1919

0 commit comments

Comments
 (0)