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: windows-apps-src/design/controls-and-patterns/navigationview.md
+26-18Lines changed: 26 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -190,7 +190,9 @@ NavigationView has a built-in back button, which can be enabled with the followi
190
190
191
191
The following is a simple example of how you can incorporate NavigationView into your app.
192
192
193
-
We demonstrate how to implement backwards navigation with NavigationView's back button. We also demonstrate localization of nav item content strings with `x:Uid`. For more information on localization, see [Localize strings in your UI](../../app-resources/localize-strings-ui-manifest.md).
193
+
We demonstrate how to implement backwards navigation with NavigationView's back button. Note that to use NavigationView's back navigation properties, you'll need the [Windows 10 Insider Preview (introduced v10.0.17110.0)](https://www.microsoft.com/en-us/software-download/windowsinsiderpreviewSDK).
194
+
195
+
We also demonstrate localization of nav item content strings with `x:Uid`. For more information on localization, see [Localize strings in your UI](../../app-resources/localize-strings-ui-manifest.md).
Copy file name to clipboardExpand all lines: windows-apps-src/design/controls-and-patterns/progress-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
@@ -144,7 +144,7 @@ Both progress controls are rather simple; but some visual features of the contro
144
144
**Sizing the ProgressRing**
145
145
146
146
The ProgressRing can be sized as large as you want, but can only be as small as 20x20epx. In order to resize a ProgressRing, you must set its height and width. If only height or width are set, the control will assume minimum sizing (20x20epx) – conversely if the height and width are set to two different sizes, the smaller of the sizes will be assumed.
147
-
To ensure your ProgressRing is correct for your needs, set bother the height and the width to the same value:
147
+
To ensure your ProgressRing is correct for your needs, set both the height and the width to the same value:
Copy file name to clipboardExpand all lines: windows-apps-src/design/controls-and-patterns/rating.md
+13-16Lines changed: 13 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
author: serenaz
3
-
description: Enables users to rate content with touch, pen, mouse, gamepad and keyboard.
4
-
title: Ratings Control
3
+
description: Enables users to view and set ratings that reflect satisfaction with content and services.
4
+
title: Rating Control
5
5
template: detail.hbs
6
6
ms.author: sezhen
7
7
ms.date: 10/25/2017
@@ -16,15 +16,13 @@ doc-status: Published
16
16
ms.localizationpriority: medium
17
17
---
18
18
19
-
# Ratings control
19
+
# Rating control
20
20
21
-
Allowing users to easily view and set ratings that reflect degrees of satisfaction with content and services is a critical app scenario. The ratings control allows your users to do this with touch, pen, mouse, gamepad and keyboard. Use the ratings control to let your users rate movies, music and books with high quality interaction and animation. The ratings control has several great features that provide flexibility and customization.
21
+
The rating control allows users to view and set ratings that reflect degrees of satisfaction with content and services. Users can interact with the rating control with touch, pen, mouse, gamepad or keyboard. The follow guidance shows how to use the rating control's features to provide flexibility and customization.

26
-
27
-
In this article, we describe some key scenarios that the ratings control supports. Each scenario includes an example to provide context, and code that shows how to achieve the scenario.
25
+

28
26
29
27
## Examples
30
28
@@ -44,7 +42,7 @@ In this article, we describe some key scenarios that the ratings control support
44
42
45
43
### Editable rating with placeholder value
46
44
47
-
Perhaps the most common way to use the ratings control is to display an average rating while still allowing the user to enter their own rating value. In this scenario, the ratings control is initially set to reflect the average satisfaction rating of all users of a particular service or type of content (such as a music, videos, books, etc.). It remains in this state until a user interacts with the control with the goal of individually rating an item. This interaction changes the state of the ratings control to reflect the user's personal satisfaction rating.
45
+
Perhaps the most common way to use the rating control is to display an average rating while still allowing the user to enter their own rating value. In this scenario, the rating control is initially set to reflect the average satisfaction rating of all users of a particular service or type of content (such as a music, videos, books, etc.). It remains in this state until a user interacts with the control with the goal of individually rating an item. This interaction changes the state of the ratings control to reflect the user's personal satisfaction rating.
48
46
49
47
#### Initial average rating state
50
48

@@ -54,41 +52,40 @@ Perhaps the most common way to use the ratings control is to display an average
54
52

Sometimes you need to show ratings of secondary content, such as that displayed in recommended content or when displaying a list of comments and their corresponding ratings. In this case, the user shouldn’t be able to edit the rating, so you can make the control read-only.
78
-
The read only mode is also the recommended way of using the ratings control when it is used in very large virtualized lists of content, for both UI design and performance reasons.
79
-
76
+
The read only mode is also the recommended way of using the rating control when it is used in very large virtualized lists of content, for both UI design and performance reasons.
80
77
81
78

82
79
83
80
To do this you would do the following:
84
81
85
82
```XAML
86
-
<RatingsControlIsReadOnly="True"/>
83
+
<RatingControlIsReadOnly="True"/>
87
84
```
88
85
89
86
## Additional functionality
90
87
91
-
The ratings control has many additional features which can be used. Details for using these features can be found in our MSDN reference documentation.
88
+
The rating control has many additional features which can be used. Details for using these features can be found in our MSDN reference documentation.
92
89
Here is a non-comprehensive list of additional functionality:
Copy file name to clipboardExpand all lines: windows-apps-src/machine-learning/get-started.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
@@ -16,7 +16,7 @@ ms.localizationpriority: medium
16
16
In this tutorial, we'll build a simple UWP app that uses a trained machine learning model to recognize a numeric digit drawn by the user. This tutorial primarily focuses on how to load and use Windows Machine Learning in your app.
-[Visual Studio (Version 15.7 - Preview 1)](https://www.visualstudio.com/vs/preview/): Note that you'll need to check off the optional Windows 10 Preview SDK (10.0.17110.0) inside Visual Studio Installer.
0 commit comments