Skip to content

Commit 2b68b52

Browse files
Merge pull request #112 from wpfcontrib/add-yaml-frontmatter
Add YAML Front matter for Samples Browser
2 parents 0fc29c6 + 2615693 commit 2b68b52

File tree

218 files changed

+2154
-221
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

218 files changed

+2154
-221
lines changed

Accessibility/FetchTimer/README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
---
2+
languages:
3+
- csharp
4+
products:
5+
- windows-wpf
6+
page_type: sample
7+
name: "FetchTimer Sample"
8+
---
19

210
# FetchTimer Sample
311

@@ -10,7 +18,7 @@ The sample is designed to demonstrate the use of CacheRequest and related classe
1018

1119
## Build the sample
1220

13-
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2015](https://www.visualstudio.com/wpf-vs).
21+
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2019](https://www.visualstudio.com/wpf-vs).
1422

1523
### Deploying the sample
1624

@@ -20,3 +28,4 @@ The easiest way to use these samples without using Git is to download the zip fi
2028

2129
- To debug the sample and then run it, press F5 or select Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or selectDebug > Start Without Debugging.
2230

31+

Accessibility/FindText/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The functionality demonstrated by the sample includes the ability to search for
1010
Three WPF documents are provided in the Content folder of the TextProvider project.
1111

1212
## Build the sample
13-
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2015](https://www.visualstudio.com/wpf-vs).
13+
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2019](https://www.visualstudio.com/wpf-vs).
1414

1515
### Deploying the sample
1616
- Select Build > Deploy Solution.

Accessibility/FocusTracker/README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
---
2+
languages:
3+
- csharp
4+
products:
5+
- windows-wpf
6+
page_type: sample
7+
name: "TrackFocus Sample"
8+
---
19

210
# TrackFocus Sample
311
This sample tracks the input focus on the desktop and displays information about focus changes, using Microsoft UI Automation. This is a simple console application that might be used as a starting-point for an application that uses UI Automation to track events on the desktop.
@@ -13,11 +21,12 @@ The program subscribes to three event types:
1321
For simplicity, no caching is done. A full-scale application would likely cache all immediate children of an application window as soon as that window received focus.
1422

1523
## Build the sample
16-
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2015](https://www.visualstudio.com/wpf-vs).
24+
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2019](https://www.visualstudio.com/wpf-vs).
1725

1826
### Deploying the sample
1927
- Select Build > Deploy Solution.
2028

2129
### Deploying and running the sample
2230
- To debug the sample and then run it, press F5 or select Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or selectDebug > Start Without Debugging.
2331

32+

Accessibility/Highlighter/README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
---
2+
languages:
3+
- csharp
4+
products:
5+
- windows-wpf
6+
page_type: sample
7+
name: "Highlighter Sample"
8+
---
19

210
# Highlighter Sample
311
This sample demonstrates how to keep track of focus changes so that focused elements can be highlighted on the screen. The highlight is a simple colored rectangle, but it could be a magnifier window or some other tool to make the focused element more accessible.
@@ -7,11 +15,12 @@ Sometimes focus-changed events occur in rapid succession: for example, when the
715
You can experiment with different timer intervals by using the slider.
816

917
## Build the sample
10-
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2015](https://www.visualstudio.com/wpf-vs).
18+
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2019](https://www.visualstudio.com/wpf-vs).
1119

1220
### Deploying the sample
1321
- Select Build > Deploy Solution.
1422

1523
### Deploying and running the sample
1624
- To debug the sample and then run it, press F5 or select Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or selectDebug > Start Without Debugging.
1725

26+

Accessibility/InsertText/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The sample defines two applications, a target and a client that operates against
1010
The target application, InsertTextTarget.exe, should be automatically copied to the InsertText client folder when you build the sample and is started manually from the client. You may have to manually copy this file to the bin/debug folder of the client application if you receive an error stating that the file cannot be found.
1111

1212
## Build the sample
13-
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2015](https://www.visualstudio.com/wpf-vs).
13+
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2019](https://www.visualstudio.com/wpf-vs).
1414

1515
### Deploying the sample
1616
- Select Build > Deploy Solution.

Accessibility/InvokePattern/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The sample illustrates how identical controls may provide different control patt
77
Two applications—a Windows Presentation Foundation (WPF) target application containing a variety of TreeView controls used as UI Automation providers and a WPF UI Automation client that operates against this target application—are created by the sample. The client uses the ExpandCollapsePattern, InvokePattern, and TogglePattern control patterns to interact with the controls in the target.
88

99
## Build the sample
10-
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2015](https://www.visualstudio.com/wpf-vs).
10+
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2019](https://www.visualstudio.com/wpf-vs).
1111

1212
### Deploying the sample
1313
- Select Build > Deploy Solution.

Accessibility/SelectionPattern/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This sample demonstrates the Microsoft UI Automation SelectionPattern and Select
55
The sample consists of a Windows Forms target and a Windows Presentation Foundation (WPF) client. The client uses the SelectionPattern and SelectionItemPattern control patterns to interact with the collection of controls in the target. The functionality demonstrated by the sample includes the dynamic construction of selection controls in the client that map to the controls found in the target, a report of important properties for each selection control, and the ability to echo selection events from the target in the client and vice versa.
66

77
## Build the sample
8-
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2015](https://www.visualstudio.com/wpf-vs).
8+
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2019](https://www.visualstudio.com/wpf-vs).
99

1010
### Deploying the sample
1111
- Select Build > Deploy Solution.

Accessibility/WindowMove/README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,24 @@
1+
---
2+
languages:
3+
- csharp
4+
products:
5+
- windows-wpf
6+
page_type: sample
7+
name: "WindowPattern Sample"
8+
---
19

210
# WindowPattern Sample
311
This sample demonstrates how to use the WindowPattern control pattern to control the screen location of a top-level window as well as register and listen for standard window events.
412

513
This sample defines two applications; an instance of Notepad used as a UI Automation provider, or target application, and a UI Automation client that operates against this target application.
614

715
## Build the sample
8-
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2015](https://www.visualstudio.com/wpf-vs).
16+
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2019](https://www.visualstudio.com/wpf-vs).
917

1018
### Deploying the sample
1119
- Select Build > Deploy Solution.
1220

1321
### Deploying and running the sample
1422
- To debug the sample and then run it, press F5 or select Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or selectDebug > Start Without Debugging.
1523

24+

Animation/AnimationExamples/README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
1+
---
2+
languages:
3+
- csharp
4+
products:
5+
- windows-wpf
6+
page_type: sample
7+
name: "Animation Example Gallery"
8+
---
19

210
# Animation Example Gallery
311
This sample shows how to animate a variety of objects, include text, 2-D transforms, and 3-D transforms. It also demonstrates splined interpolation, path animations, and custom animations.
412

513
## Build the sample
6-
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2015](https://www.visualstudio.com/wpf-vs).
14+
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2019](https://www.visualstudio.com/wpf-vs).
715

816
### Deploying the sample
917
- Select Build > Deploy Solution.
1018

1119
### Deploying and running the sample
1220
- To debug the sample and then run it, press F5 or select Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or selectDebug > Start Without Debugging.
1321

22+

Animation/AnimationTiming/README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
1+
---
2+
languages:
3+
- csharp
4+
products:
5+
- windows-wpf
6+
page_type: sample
7+
name: "Animation Timing Behavior Sample"
8+
---
19

210
# Animation Timing Behavior Sample
311
This sample shows how to specify when an animation starts, how many times it repeats, whether it accelerates or decelerates, and other timing behaviors.
412

513
## Build the sample
6-
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2015](https://www.visualstudio.com/wpf-vs).
14+
The easiest way to use these samples without using Git is to download the zip file containing the current version (using the link below or by clicking the "Download ZIP" button on the repo page). You can then unzip the entire archive and use the samples in [Visual Studio 2019](https://www.visualstudio.com/wpf-vs).
715

816
### Deploying the sample
917
- Select Build > Deploy Solution.
1018

1119
### Deploying and running the sample
1220
- To debug the sample and then run it, press F5 or select Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or selectDebug > Start Without Debugging.
1321

22+

0 commit comments

Comments
 (0)