Skip to content

Commit 4ef15b0

Browse files
committed
Addressed linter issues
1 parent 1bf7585 commit 4ef15b0

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

docs/animations/Offset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ You can change the way how the animation interpolates between keyframes by defin
124124

125125
**Sample Output**
126126

127-
![Use Case 2 Output](../resources/images/Animations/Offset/Use-Case-1.gif)
127+
![Use Case 1 Output](../resources/images/Animations/Offset/Use-Case-1.gif)
128128

129129
- Use this to create chaining animations with other animations. Visit the [AnimationSet](AnimationSet.md) documentation for more information.
130130

docs/brushes/BackdropGammaTransferBrush.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: BackdropGammaTransferBrush
33
author: michael-hawker
4-
description: The BackdropBlurBrush is a Brush that blurs whatever is behind it in the application.
4+
description: The BackdropGammaTransferBrush is a Brush which modifies the color values of whatever is behind it in the application.
55
keywords: windows 10, uwp, windows community toolkit, uwp community toolkit, uwp toolkit, brush, backdrop, gamma, color
66
---
77

docs/controls/datagrid_guidance/editing_inputvalidation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The [DataGrid](../datagrid.md) control supports cell and row editing functionali
1515
<controls:DataGrid BeginningEdit="dg_Editing" CellEditEnding="dg_CellEditEnding" RowEditEnding="dg_RowEditEnding" />
1616
```
1717

18-
![Editing](../../resources/images/Controls/DataGrid/editing.png)
18+
![Sample editing UI](../../resources/images/Controls/DataGrid/editing.png)
1919

2020
A cell-level edit is committed when you move to another cell in the same row. All edits in a row are committed when you press ENTER or move to another row.
2121

@@ -51,7 +51,7 @@ Event | RowEditEnded | Occurs when a row edit has been committed or canceled.
5151

5252
DataGrid control supports input validation through **INotifyDataErrorInfo** in your DataModel or ViewModel. Implement data validation logic by implementing **DataErrorsChangedEventArgs**, **HasErrors** and **GetErrors** methods. The DataGrid control automatically shows the error UI in the editing cell/row when the error conditions are met.
5353

54-
![Validation](../../resources/images/Controls/DataGrid/validation.png)
54+
![Sample validation UI](../../resources/images/Controls/DataGrid/validation.png)
5555

5656
See [DataGrid Sample](https://github.com/Microsoft/WindowsCommunityToolkit/tree/master/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/DataGrid) for an example of how to handle input validation in the DataGrid control.
5757

docs/controls/datagrid_guidance/keyboard_navigation_selection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The DataGrid control supports single row selection as well as multiple rows sele
5454
<controls:DataGrid SelectionMode="Extended"/>
5555
```
5656

57-
![Selection](../../resources/images/Controls/DataGrid/selection.png)
57+
![Sample selection UI](../../resources/images/Controls/DataGrid/selection.png)
5858

5959
If the **SelectionMode** property is set to **Extended**, the navigation behavior does not change, but navigating with the keyboard while pressing SHIFT (including CTRL+SHIFT) will modify a multi-row selection. Before navigation starts, the control marks the current row as an anchor row. When you navigate while pressing SHIFT, the selection includes all rows between the anchor row and the current row.
6060

docs/controls/datagrid_guidance/rowdetails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords: windows 10, uwp, windows community toolkit, windows toolkit, DataGrid,
99

1010
Each row in the [DataGrid](../datagrid.md) control can be expanded to display a row details section. The row details section is defined by a [DataTemplate](https://docs.microsoft.com/uwp/api/windows.ui.xaml.datatemplate) that specifies the appearance of the section and the data to be displayed.
1111

12-
![RowDetails](../../resources/images/Controls/DataGrid/rowdetails.png)
12+
![Sample row details UI](../../resources/images/Controls/DataGrid/rowdetails.png)
1313

1414
The row details section can be displayed for selected rows, displayed for all rows, or it can be collapsed. The row details section can also be frozen so that it does not scroll horizontally when the DataGrid is scrolled.
1515

docs/controls/datagrid_guidance/styling_formatting_options.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You can also change the color of the gridlines using **HorizontalGridLinesBrush*
2323
<controls:DataGrid GridLinesVisibility="All"/>
2424
```
2525

26-
![Gridlines](../../resources/images/Controls/DataGrid/gridlines.png)
26+
![Sample grid lines UI](../../resources/images/Controls/DataGrid/gridlines.png)
2727

2828
## 2. Alternating rows
2929

@@ -96,7 +96,7 @@ Frozen columns are columns that are always displayed and cannot be scrolled out
9696
<controls:DataGrid FrozenColumnCount="2"/>
9797
```
9898

99-
![FrozenColumns](../../resources/images/Controls/DataGrid/frozencolumns.png)
99+
![Frozen columns UI](../../resources/images/Controls/DataGrid/frozencolumns.png)
100100

101101
## 6. Reorder and resize columns
102102

@@ -109,7 +109,7 @@ You can allow users to:
109109
<controls:DataGrid CanUserReorderColumns="True" CanUserResizeColumns="True"/>
110110
```
111111

112-
![ResizeColumns](../../resources/images/Controls/DataGrid/resizecolumns.png)
112+
![Sample resize columns UI](../../resources/images/Controls/DataGrid/resizecolumns.png)
113113

114114
## See Also
115115

docs/controls/wpf-winforms/WebView.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ End Class
544544

545545
### There’s *WebBrowser*, *WebView*, and *WebViewControl*. What’s the difference?
546546

547-
When people refer to a “web view” they either refer to the [WebBrowser](https://docs.microsoft.com/dotnet/api/system.windows.controls.webbrowser?view=netframework-4.7.2) control in .NET, which uses the legacy Internet Explorer "Trident" (MSHTML) engine, the Universal Windows Platform (UWP) [WebView](https://docs.microsoft.com/uwp/api/windows.ui.xaml.controls.webview ) which uses the Microsoft Edge (EdgeHTML) engine on some versions of Windows and Trident on others, or the [WebViewControl](https://docs.microsoft.com/uwp/api/windows.web.ui.interop.webviewcontrol), which is a subset of the UWP WebView available for use in Windows Forms, WPF and other desktop (Win32) applications.
547+
When people refer to a “web view” they either refer to the [WebBrowser](https://docs.microsoft.com/dotnet/api/system.windows.controls.webbrowser) control in .NET, which uses the legacy Internet Explorer "Trident" (MSHTML) engine, the Universal Windows Platform (UWP) [WebView](https://docs.microsoft.com/uwp/api/windows.ui.xaml.controls.webview ) which uses the Microsoft Edge (EdgeHTML) engine on some versions of Windows and Trident on others, or the [WebViewControl](https://docs.microsoft.com/uwp/api/windows.web.ui.interop.webviewcontrol), which is a subset of the UWP WebView available for use in Windows Forms, WPF and other desktop (Win32) applications.
548548

549549
### Is *WebViewControl* available on Windows Server?
550550

docs/controls/wpf-winforms/WebViewCompatible.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ The **WebViewCompatible** control shows web content in your Windows Forms or WPF
1717
Unlike [WebView](WebView.md), **WebViewCompatible** uses one of two rendering engines to support a broader set of Windows clients:
1818

1919
* On Windows 10 devices, the newer Microsoft Edge rendering engine is used to embed a view that renders richly formatted HTML content from a remote web server, dynamically generated code, or content files.
20-
* On devices running older versions of Windows, the [System.Windows.Controls.WebBrowser](https://docs.microsoft.com/dotnet/api/system.windows.controls.webbrowser?view=netframework-4.7.2) is used, which provides Internet Explorer engine-based rendering.
20+
* On devices running older versions of Windows, the [System.Windows.Controls.WebBrowser](https://docs.microsoft.com/dotnet/api/system.windows.controls.webbrowser) is used, which provides Internet Explorer engine-based rendering.
2121

2222
> [!NOTE]
23-
> The Edge runtime does not at the moment work when the process is elevated as an administrator. Therefore **WebViewCompatible** will fall back to use the [System.Windows.Controls.WebBrowser](https://docs.microsoft.com/dotnet/api/system.windows.controls.webbrowser?view=netframework-4.7.2) when it detects that the process is running as administrator.
23+
> The Edge runtime does not at the moment work when the process is elevated as an administrator. Therefore **WebViewCompatible** will fall back to use the [System.Windows.Controls.WebBrowser](https://docs.microsoft.com/dotnet/api/system.windows.controls.webbrowser) when it detects that the process is running as administrator.
2424
2525
> [!NOTE]
2626
> If you have feedback about this control, create a new issue in the [Microsoft.Toolkit.Win32 repo](https://github.com/windows-toolkit/Microsoft.Toolkit.Win32/issues) and leave your comments there. If you prefer to submit your feedback privately, you can send it to XamlIslandsFeedback@microsoft.com. Your insights and scenarios are critically important to us.
@@ -32,7 +32,7 @@ Unlike [WebView](WebView.md), **WebViewCompatible** uses one of two rendering en
3232

3333
The WPF version of this control is located in the **Microsoft.Toolkit.Wpf.UI.Controls** namespace. The Windows Forms version is coming soon, and it will be located in the **Microsoft.Toolkit.Forms.UI.Controls** namespace. You can find additional related types (such as event args classes) in the **Microsoft.Toolkit.Win32.UI.Controls.Interop.WinRT** namespace.
3434

35-
These controls wrap an instance of the [WebViewControl](https://docs.microsoft.com/uwp/api/windows.web.ui.interop.webviewcontrol) class, and they provide a subset of members from that class. The [WebViewControl](https://docs.microsoft.com/uwp/api/windows.web.ui.interop.webviewcontrol) is similar to the [WebView](https://docs.microsoft.com/uwp/api/windows.ui.xaml.controls.webview) class, but it is designed to run out of process in a desktop application (such as a WPF or Windows Forms application) and it supports a smaller set of members. Because **WebViewCompatible** wraps [WebViewControl](https://docs.microsoft.com/uwp/api/windows.web.ui.interop.webviewcontrol) (on Windows 10) and [WebBrowser](https://docs.microsoft.com/dotnet/api/system.windows.controls.webbrowser?view=netframework-4.7.2) (on older versions of Windows), it provides a simpler subset of common functionality.
35+
These controls wrap an instance of the [WebViewControl](https://docs.microsoft.com/uwp/api/windows.web.ui.interop.webviewcontrol) class, and they provide a subset of members from that class. The [WebViewControl](https://docs.microsoft.com/uwp/api/windows.web.ui.interop.webviewcontrol) is similar to the [WebView](https://docs.microsoft.com/uwp/api/windows.ui.xaml.controls.webview) class, but it is designed to run out of process in a desktop application (such as a WPF or Windows Forms application) and it supports a smaller set of members. Because **WebViewCompatible** wraps [WebViewControl](https://docs.microsoft.com/uwp/api/windows.web.ui.interop.webviewcontrol) (on Windows 10) and [WebBrowser](https://docs.microsoft.com/dotnet/api/system.windows.controls.webbrowser) (on older versions of Windows), it provides a simpler subset of common functionality.
3636

3737
Unless specified otherwise in this article, the documentation for the [WebViewControl](https://docs.microsoft.com/uwp/api/windows.web.ui.interop.webviewcontrol) class applies to the WPF and Windows Forms **WebView** controls. This article links to reference pages for the UWP [WebViewControl](https://docs.microsoft.com/uwp/api/windows.web.ui.interop.webviewcontrol) class for more information about most members.
3838

@@ -50,7 +50,7 @@ Unless specified otherwise in this article, the documentation for the [WebViewCo
5050

5151
When compared to the UWP **WebView** control, the current release of the WPF and Windows Forms [WebView](WebView.md) controls have some limitations. For the complete list of these limitations, see [Known Issues of the WebView control for Windows Forms and WPF applications](WebView-known-issues.md).
5252

53-
The **WebViewCompatible** control has further limitations because it exposes a common interface that is a subset of common functionality across the two underlying implementations. On a Windows 10 computer that supports [WebViewControl](https://docs.microsoft.com/uwp/api/windows.web.ui.interop.webviewcontrol), **WebViewCompatible** has the same limitations as [WebView](WebView.md) as well as further exclusions to the exposed functionality. On a computer running an earlier version of Windows, **WebViewCompatible** will use [WebBrowser](https://docs.microsoft.com/dotnet/api/system.windows.controls.webbrowser?view=netframework-4.7.2) and have the same additional interface limitations.
53+
The **WebViewCompatible** control has further limitations because it exposes a common interface that is a subset of common functionality across the two underlying implementations. On a Windows 10 computer that supports [WebViewControl](https://docs.microsoft.com/uwp/api/windows.web.ui.interop.webviewcontrol), **WebViewCompatible** has the same limitations as [WebView](WebView.md) as well as further exclusions to the exposed functionality. On a computer running an earlier version of Windows, **WebViewCompatible** will use [WebBrowser](https://docs.microsoft.com/dotnet/api/system.windows.controls.webbrowser) and have the same additional interface limitations.
5454

5555
## Add the WebViewCompatible control to the Visual Studio Toolbox for Windows Forms applications
5656

docs/extensions/ScrollViewerExtensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ MiddleClickScrolling allows you to scroll by click middle mouse button (scroll w
9999

100100
### Sample Output
101101

102-
![MiddleClickScrolling](../resources/images/Extensions/MiddleClickScrolling.gif)
102+
![Middle click scrolling UI](../resources/images/Extensions/MiddleClickScrolling.gif)
103103

104104
### Changing Cursor Type
105105

0 commit comments

Comments
 (0)