Skip to content

Commit 6cd7d8f

Browse files
authored
Merge pull request #285 from MicrosoftDocs/quradic/seo-duplicate-title-fix
Title fix for SEO
2 parents b80bdc9 + 8453899 commit 6cd7d8f

File tree

9 files changed

+35
-37
lines changed

9 files changed

+35
-37
lines changed

docs/animations/ConnectedAnimations.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Connected Animations XAML Attached Properties
2+
title: Connected Animations in XAML
33
author: nmetulev
44
description: The Connected Animation XAML Attached Properties enable connected animations to be defined in your XAML code
55
keywords: windows 10, uwp, windows community toolkit, uwp community toolkit, uwp toolkit, connected animations, animation, coordinated animations
@@ -141,8 +141,8 @@ We need to set the same key for the element to be connected with. Also, You can
141141
<Border x:Name="HeroElement" Height="300" Width="300" Background="Purple"
142142
animations:Connected.Key="item"/>
143143

144-
<StackPanel x:Name="HeroDetailsElement" Margin="20,0"
145-
VerticalAlignment="Bottom" MaxWidth="500"
144+
<StackPanel x:Name="HeroDetailsElement" Margin="20,0"
145+
VerticalAlignment="Bottom" MaxWidth="500"
146146
animations:Connected.AnchorElement="{x:Bind HeroElement}">
147147
<TextBlock Text="Header" FontSize="50">Header</TextBlock>
148148
<TextBlock TextWrapping="WrapWholeWords">Lorem ipsum ...</TextBlock>
@@ -153,7 +153,7 @@ We need to set the same key for the element to be connected with. Also, You can
153153
In this page, we can also create a GridView which implements connected animation for its items. You need to set ListItemKey and ListItemElementName for specifying the UIElement to animate.
154154

155155
```xaml
156-
<GridView x:Name="listView" Margin="0, 40, 0, 0" SelectionMode="None"
156+
<GridView x:Name="listView" Margin="0, 40, 0, 0" SelectionMode="None"
157157
Grid.Row="1" ItemClick="ListView_ItemClick" IsItemClickEnabled="True"
158158
animations:Connected.ListItemElementName="ItemThumbnail"
159159
animations:Connected.ListItemKey="listItem">
@@ -175,14 +175,14 @@ In this page, you just need to give the same key.
175175
```xaml
176176
<StackPanel>
177177
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
178-
<StackPanel x:Name="HeroDetailsElement" Margin="20,0" VerticalAlignment="Bottom" MaxWidth="500"
178+
<StackPanel x:Name="HeroDetailsElement" Margin="20,0" VerticalAlignment="Bottom" MaxWidth="500"
179179
animations:Connected.AnchorElement="{x:Bind ItemHeroElement}">
180-
<TextBlock Text="{x:Bind item.Title}"
180+
<TextBlock Text="{x:Bind item.Title}"
181181
FontSize="50"/>
182182
<TextBlock TextWrapping="WrapWholeWords">Lorem ipsum ...</TextBlock>
183183
</StackPanel>
184184

185-
<Border x:Name="ItemHeroElement" Height="300" Width="300" Background="Purple"
185+
<Border x:Name="ItemHeroElement" Height="300" Width="300" Background="Purple"
186186
animations:Connected.Key="listItem"/>
187187
</StackPanel>
188188

docs/animations/ImplicitAnimations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Implicit Animations XAML Attached Properties
2+
title: Implicit Animations in XAML
33
author: nmetulev
44
description: The Implicit Animations Attached Properties enable implicit animations to be defined in your XAML code
55
keywords: windows 10, uwp, windows community toolkit, uwp community toolkit, uwp toolkit, composition animations, animation, implicit animations, XAML, implicit, composition, show animation, hide animation

docs/controls/datagrid_guidance/rowdetails.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: How to - Display and Configure Row Details in the DataGrid Control
2+
title: Display and Configure Row Details in DataGrid
33
author: harinikmsft
44
description: Guidance document that shows how to customize row details section in the DataGrid control
55
keywords: windows 10, uwp, windows community toolkit, windows toolkit, DataGrid, xaml control, xaml, RowDetails
@@ -61,7 +61,7 @@ Set the **RowDetailsVisibilityMode** property to a value of the **DataGridRowDet
6161
* *Visible* : The row details section is displayed for all rows.
6262
* *VisibleWhenSelected* : The row details section is displayed only for selected rows.
6363

64-
The following example shows how to use the RowDetailsVisibilityMode property to change the row details display mode programmatically from the selection of a value in a ComboBox:
64+
The following example shows how to use the RowDetailsVisibilityMode property to change the row details display mode programmatically from the selection of a value in a ComboBox:
6565

6666
```C#
6767
// Set the row details visibility to the option selected in the combo box.
@@ -93,4 +93,4 @@ Set the **AreRowDetailsFrozen** property to true.
9393
* [Add a DataGrid control to a page](datagrid_basics.md)
9494
* [Customize the DataGrid control using styling and formatting options](styling_formatting_options.md)
9595
* [Sizing options in the DataGrid control](sizing_options.md)
96-
* [DataGrid Sample](https://github.com/Microsoft/WindowsCommunityToolkit/tree/master/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/DataGrid).
96+
* [DataGrid Sample](https://github.com/Microsoft/WindowsCommunityToolkit/tree/master/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/DataGrid).

docs/controls/datagrid_guidance/sizing_options.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: How to - Use the different sizing options in the DataGrid control
2+
title: Sizing options in the DataGrid control
33
author: harinikmsft
44
description: Guidance document that shows how to size the rows, columns and headers of the DataGrid control
55
keywords: windows 10, uwp, windows community toolkit, windows toolkit, DataGrid, xaml control, xaml
@@ -50,10 +50,10 @@ The following table shows the values provided by the DataGridLengthUnitType stru
5050

5151
| Name | Description |
5252
|---|---|
53-
| Auto | The default automatic sizing mode sizes DataGrid columns based on the contents of both cells and column headers. |
54-
| SizeToCells | The cell-based automatic sizing mode sizes DataGrid columns based on the contents of cells in the column, not including column headers.|
55-
| SizeToHeader | The header-based automatic sizing mode sizes DataGrid columns based on the contents of column headers only.|
56-
| Pixel | The pixel-based sizing mode sizes DataGrid columns based on the numeric value provided.|
53+
| Auto | The default automatic sizing mode sizes DataGrid columns based on the contents of both cells and column headers. |
54+
| SizeToCells | The cell-based automatic sizing mode sizes DataGrid columns based on the contents of cells in the column, not including column headers.|
55+
| SizeToHeader | The header-based automatic sizing mode sizes DataGrid columns based on the contents of column headers only.|
56+
| Pixel | The pixel-based sizing mode sizes DataGrid columns based on the numeric value provided.|
5757
| Star | The star sizing mode is used to distribute available space by weighted proportions. In XAML, star values are expressed as n* where n represents a numeric value. 1* is equivalent to *. For example, if two columns in a DataGrid had widths of * and 2*, the first column would receive one portion of the available space and the second column would receive two portions of the available space.
5858

5959
The **DataGridLengthConverter** class can be used to convert data between numeric or string values and DataGridLength values.
@@ -62,14 +62,14 @@ By default, the **DataGrid.ColumnWidth** property is set to Auto, and the **Data
6262

6363
Columns in the DataGrid can also be set to automatically size only within specified boundaries, or columns can be set to a specific size. The following table shows the properties that can be set to control column sizes.
6464

65-
| Property | Description |
65+
| Property | Description |
6666
|---|---|
67-
| DataGrid.MaxColumnWidth | Sets the upper bound for all columns in the DataGrid.|
68-
| DataGridColumn.MaxWidth | Sets the upper bound for an individual column. Overrides DataGrid.MaxColumnWidth.|
69-
| DataGrid.MinColumnWidth | Sets the lower bound for all columns in the DataGrid.|
70-
| DataGridColumn.MinWidth | Sets the lower bound for an individual column. Overrides DataGrid.MinColumnWidth.|
71-
| DataGrid.ColumnWidth | Sets a specific width for all columns in the DataGrid.|
72-
| DataGridColumn.Width | Sets a specific width for an individual column. Overrides DataGrid.ColumnWidth.|
67+
| DataGrid.MaxColumnWidth | Sets the upper bound for all columns in the DataGrid.|
68+
| DataGridColumn.MaxWidth | Sets the upper bound for an individual column. Overrides DataGrid.MaxColumnWidth.|
69+
| DataGrid.MinColumnWidth | Sets the lower bound for all columns in the DataGrid.|
70+
| DataGridColumn.MinWidth | Sets the lower bound for an individual column. Overrides DataGrid.MinColumnWidth.|
71+
| DataGrid.ColumnWidth | Sets a specific width for all columns in the DataGrid.|
72+
| DataGridColumn.Width | Sets a specific width for an individual column. Overrides DataGrid.ColumnWidth.|
7373

7474
### DataGrid Column Headers
7575
By default, DataGrid column headers are displayed. To hide column headers, the **HeadersVisibility** property must be set to *DataGridHeadersVisibility.Row* or *DataGridHeadersVisibility.None*. By default, when column headers are displayed, they automatically size to fit their content. The column headers can be given a specific height by setting the **DataGrid.ColumnHeaderHeight** property.

docs/controls/datagrid_guidance/styling_formatting_options.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: How to - Customize the DataGrid control through UI formatting options
2+
title: Customize the DataGrid control
33
author: harinikmsft
44
description: Guidance document that shows how to use the different formatting options to customize the look and feel of the DataGrid control
55
keywords: windows 10, uwp, windows community toolkit, windows toolkit, DataGrid, xaml control, xaml
@@ -14,7 +14,7 @@ You can control the visibility of the grid lines separating inner cells using th
1414
* *None*: No grid lines are shown
1515
* *Horizontal*: Only horizontal grid lines, which separate rows, are shown.
1616
* *Vertical*: Only vertical grid lines, which separate columns, are shown.
17-
* *All*: Both horizontal and vertical grid lines are shown.
17+
* *All*: Both horizontal and vertical grid lines are shown.
1818

1919
You can also change the color of the gridlines using **HorizontalGridLinesBrush** and/or **VerticalGridLinesBrush** properties.
2020

@@ -75,8 +75,8 @@ Frozen columns are columns that are always displayed and cannot be scrolled out
7575
![FrozenColumns](../../resources/images/Controls/DataGrid/frozencolumns.png)
7676

7777
## 6. Reorder and resize columns
78-
You can allow users to:
79-
* Adjust all column widths using mouse/touch/pen through the **DataGrid.CanUserResizeColumns** property.
78+
You can allow users to:
79+
* Adjust all column widths using mouse/touch/pen through the **DataGrid.CanUserResizeColumns** property.
8080
* Change the column display order by dragging the column headers using mouse/touch/pen through the **DataGrid.CanUserReorderColumns** property.
8181
* Set this behavior for individual columns by setting the **DataGridColumn.CanUserReorder/CanUserResize** properties. If the individual column properties and the global DataGrid.** properties are both set, a value of false will take precedence over a value of true.
8282

docs/controls/wpf-winforms/WebView-known-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Known Issues for WebView control for Windows Forms and WPF
2+
title: Known Issues in WebView control
33
author: mcleanbyron
44
description: This guide highlights known limitations with the current release of the WebView control for Windows Forms and WPF applications.
55
keywords: windows 10, uwp, windows community toolkit, uwp community toolkit, uwp toolkit, WebView, Windows Forms, WPF, known issues, release notes

docs/extensions/VisualExtensions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: Composition Visual Attached Properties
2+
title: Composition Visual Extension
33
author: nmetulev
4-
description: The Composition Visual Attached Properties allow Composition Visual Properties to be modified directly in XAML
4+
description: The Composition Visual Attached Properties Extension allow Composition Visual Properties to be modified directly in XAML
55
keywords: windows 10, uwp, windows community toolkit, uwp community toolkit, uwp toolkit, Visual, composition, xaml, attached property
66
---
77

8-
# Composition Visual Attached Properties
8+
# Composition Visual Attached Properties Extension
99

1010
The [Composition Visual](https://docs.microsoft.com/dotnet/api/microsoft.toolkit.uwp.ui.extensions.visualextensions) Attached Properties allow developers to modify common properties of the [object visual](https://docs.microsoft.com/uwp/api/Windows.UI.Composition.Visual) of an element directly in XAML.
1111

docs/extensions/WebView.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
2-
title: WebViewExtensions
2+
title: WebView extension
33
author: nmetulev
44
ms.date: 08/20/2017
55
description: The UWP Community Toolkit WebView extensions allow attaching HTML content to WebView through XAML directly or through Binding
66
keywords: windows 10, uwp, uwp community toolkit, uwp toolkit, WebViewExtensions, webview, extensions
77
---
88

9-
# WebViewExtensions
9+
# WebView extension
1010

11-
The **WebView** allows attaching HTML content to WebView.
11+
The **WebView** extension allows attaching HTML content to WebView.
1212

1313
## Example
1414

@@ -29,4 +29,3 @@ The **WebView** allows attaching HTML content to WebView.
2929
## API
3030

3131
* [WebViewExtensions source code](https://github.com/Microsoft/UWPCommunityToolkit/tree/master/Microsoft.Toolkit.Uwp.UI/Extensions/WebView)
32-

docs/extensions/WebViewExtensions.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords: windows 10, uwp, windows community toolkit, uwp community toolkit, uwp
77

88
# WebViewExtensions
99

10-
The [WebViewExtensions](https://docs.microsoft.com/dotnet/api/microsoft.toolkit.uwp.ui.extensions.webview) allows attaching HTML content to WebView.
10+
The [WebViewExtensions](https://docs.microsoft.com/dotnet/api/microsoft.toolkit.uwp.ui.webviewextensions?view=win-comm-toolkit-dotnet-stable) allows attaching HTML content to WebView.
1111

1212
## Syntax
1313

@@ -36,4 +36,3 @@ The [WebViewExtensions](https://docs.microsoft.com/dotnet/api/microsoft.toolkit.
3636
## API
3737

3838
* [WebViewExtensions source code](https://github.com/Microsoft/WindowsCommunityToolkit//tree/master/Microsoft.Toolkit.Uwp.UI/Extensions/WebView)
39-

0 commit comments

Comments
 (0)