Skip to content

Commit d979dab

Browse files
damabemairaw
authored andcommitted
SEOImages: User Story 1463880, Part 36 (#11451)
* Image updates. * Image updates. * SEO image updates. * SEO image updates. * SEO image updates. * SEO image updates. * SEO image updates. * SEO image updates. * SEO image updates. * Update walkthrough-creating-an-accessible-windows-based-application.md * Update wcf-web-http-service-help-page.md * Update walkthrough-creating-an-accessible-windows-based-application.md * Update walkthrough-creating-an-accessible-windows-based-application.md * Update walkthrough-creating-an-accessible-windows-based-application.md * Update walkthrough-creating-an-accessible-windows-based-application.md * Update walkthrough-creating-an-accessible-windows-based-application.md * Update docs/csharp/tutorials/working-with-linq.md Co-Authored-By: damabe <[email protected]> * Update docs/framework/wcf/feature-details/wcf-web-http-service-help-page.md Co-Authored-By: damabe <[email protected]> * Update docs/framework/wcf/feature-details/wcf-web-http-service-help-page.md Co-Authored-By: damabe <[email protected]> * Update docs/framework/winforms/advanced/how-to-shear-colors.md Co-Authored-By: damabe <[email protected]> * Update docs/framework/winforms/advanced/walkthrough-creating-an-accessible-windows-based-application.md Co-Authored-By: damabe <[email protected]> * Update docs/framework/wpf/graphics-multimedia/how-to-set-the-tile-size-for-a-tilebrush.md Co-Authored-By: damabe <[email protected]> * Update docs/framework/wpf/graphics-multimedia/how-to-set-the-tile-size-for-a-tilebrush.md Co-Authored-By: damabe <[email protected]> * Update docs/framework/wpf/graphics-multimedia/how-to-set-the-tile-size-for-a-tilebrush.md Co-Authored-By: damabe <[email protected]>
1 parent 9bf6bae commit d979dab

File tree

21 files changed

+22
-20
lines changed

21 files changed

+22
-20
lines changed

docs/csharp/tutorials/working-with-linq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ The compiler translates LINQ statements written with query syntax into the equiv
110110

111111
Go ahead and run the sample you've built at this point. It will display all 52 cards in the deck. You may find it very helpful to run this sample under a debugger to observe how the `Suits()` and `Ranks()` methods execute. You can clearly see that each string in each sequence is generated only as it is needed.
112112

113-
![Console window showing the app writing out 52 cards](./media/working-with-linq/console.png)
113+
![A console window showing the app writing out 52 cards.](./media/working-with-linq/console-52-card-application.png)
114114

115115
## Manipulating the Order
116116

docs/framework/wcf/feature-details/wcf-web-http-service-help-page.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ ms.assetid: 63c7c695-44b6-4f31-bb9c-00f2763f525e
66
# WCF Web HTTP Service Help Page
77
[!INCLUDE[netfx_current_long](../../../../includes/netfx-current-long-md.md)] provides an automatic help page for WCF WEB HTTP services. This help page lists a description of each operation, request and response formats, and schemas. This functionality is turned off by default. When a user browses to a WCF WEB HTTP service and appends "/Help" on to the end of the URL, for example `http://localhost:8000/Customers/Help`, a help page like the following is displayed.
88

9-
![WCF REST Help Page](../../../../docs/framework/wcf/feature-details/media/wcfresthelppagemain.gif "WCFRESTHELPPAGEMAIN")
9+
![A browser with the WCF REST Help page open.](./media/wcf-web-http-service-help-page/windows-communication-foundation-rest-help-page.gif)
1010

1111
The user can then click any method listed in the help page and detailed page for that operation is displayed showing more information about the method, including message formats and example responses. The following image is an example of a help page for a method.
1212

13-
![WCF REST Help Page Details](../../../../docs/framework/wcf/feature-details/media/wcfresthelppagedetail2.gif "WCFRESTHELPPAGEDETAIL2")
13+
![A browser with the WCF REST Help page details for the GetCustomers method open.](./media/wcf-web-http-service-help-page/windows-communication-foundation-rest-help-page-detail.gif)
1414

1515
## Using the WCF Web HTTP Help Page
1616
The WCF WEB HTTP Help page displays a short description for each operation provided that you specify one using the <xref:System.ComponentModel.DescriptionAttribute>. This attribute takes a string that contains a short description of the operation it is applied to. For example, the following code shows how to use the <xref:System.ComponentModel.DescriptionAttribute> to provide a short description.

docs/framework/winforms/advanced/how-to-inherit-forms-using-the-inheritance-picker-dialog-box.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The easiest way to inherit a form or other object is to use the **Inheritance Pi
3535

3636
6. Select the component.
3737

38-
In **Solution Explorer**, the component is added to your project. If it has a UI, controls that are part of the inherited form will be marked with a glyph (![VisualBasicInheritanceSymbol screenshot](./media/vbinheritanceglyph.gif "vbInheritanceGlyph")), and, when selected, have a border indicating the level of security that the control has on the superclassed form. The behaviors that correspond to the different security levels are listed in the table below.
38+
In **Solution Explorer**, the component is added to your project. If it has a UI, controls that are part of the inherited form will be marked with a glyph (![Screenshot of the Visual Basic inheritance symbol.](./media/how-to-inherit-forms-using-the-inheritance-picker-dialog-box/visual-basic-inheritance-glyph.gif)), and, when selected, have a border indicating the level of security that the control has on the superclassed form. The behaviors that correspond to the different security levels are listed in the table below.
3939

4040
|Security level of control|Available interaction through Designer and Code Editor with Inherited Form|
4141
|-------------------------------|--------------------------------------------------------------------------------|

docs/framework/winforms/advanced/how-to-set-tab-stops-in-drawn-text.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ You can set tab stops for text by calling the <xref:System.Drawing.StringFormat.
1818
## Example
1919
The following example sets tab stops at 150, 250, and 350. Then, the code displays a tabbed list of names and test scores.
2020

21-
The following illustration shows the tabbed text.
21+
The following illustration shows the tabbed text:
2222

23-
![Fonts Text](./media/fontstext4.png "fontstext4")
23+
![Screenshot that shows a tabbed list of names and scores.](./media/how-to-set-tab-stops-in-drawn-text/tab-list-names-test-scores.png)
2424

2525
The following code passes two arguments to the <xref:System.Drawing.StringFormat.SetTabStops%2A> method. The second argument is an array that contains tab offsets. The first argument passed to <xref:System.Drawing.StringFormat.SetTabStops%2A> is 0, which indicates that the first offset in the array is measured from position 0, the left edge of the bounding rectangle.
2626

docs/framework/winforms/advanced/how-to-shear-colors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Shearing increases or decreases a color component by an amount proportional to a
1515
## Example
1616
The following example constructs an <xref:System.Drawing.Image> object from the file ColorBars4.bmp. Then the code applies the shearing transformation described in the preceding paragraph to each pixel in the image.
1717

18-
The following illustration shows the original image on the left and the sheared image on the right.
18+
The following illustration shows the original image on the left and the sheared image on the right:
1919

20-
![Shear Colors](./media/colortrans6.png "colortrans6")
20+
![Two squares with colored stripes side-by-side illustrating the original image and the sheared image.](./media/how-to-shear-colors/original-image-sheared-image.png)
2121

2222
The following table lists the color vectors for the four bars before and after the shearing transformation.
2323

0 commit comments

Comments
 (0)