Skip to content

Commit d790263

Browse files
authored
Merge branch 'master' into WebView/2356_40
2 parents 93223c1 + 5006635 commit d790263

26 files changed

+48
-47
lines changed

docs/.template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Some warning note
8383

8484
<!-- All control/helper must at least have an example to show the use of Properties and Methods in your control/helper with the output -->
8585
<!-- Use <example> and <code> tags in C# to create a Propertie/method specific examples. For more info - https://docs.microsoft.com/dotnet/csharp/programming-guide/xmldoc/example -->
86-
<!-- Optional: Codes to achieve real-world use case with the output. For eg: Check https://docs.microsoft.com/windows/uwpcommunitytoolkit/animations/animationset#examples -->
86+
<!-- Optional: Codes to achieve real-world use case with the output. For eg: Check https://docs.microsoft.com/windows/communitytoolkit/animations/animationset#examples -->
8787

8888
## Sample Code
8989

docs/animations/Blur.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,5 +120,5 @@ Await MyUIElement.Blur(value:=5, duration:=2500, delay:=250).StartAsync() ' B
120120

121121
## Related Topics
122122

123-
- [AnimationSet Class](https://docs.microsoft.com/windows/uwpcommunitytoolkit/animations/animationset)
123+
- [AnimationSet Class](https://docs.microsoft.com/windows/communitytoolkit/animations/animationset)
124124
- [CompositionEffectBrush Class](https://docs.microsoft.com/uwp/api/Windows.UI.Composition.CompositionEffectBrush)

docs/animations/CompositionAnimations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ A collection of animations.
9292
## Examples
9393

9494
> [!NOTE]
95-
Use [Implicit Composition Animations in XAML](https://docs.microsoft.com/windows/uwpcommunitytoolkit/animations/implicitanimations) to run these animations.
95+
Use [Implicit Composition Animations in XAML](https://docs.microsoft.com/windows/communitytoolkit/animations/implicitanimations) to run these animations.
9696

9797
Let's create some plain animation first. Theses animation will run when the `Target` property is changed.
9898

docs/animations/Fade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,5 +119,5 @@ You can change the way how the animation interpolates between keyframes by defin
119119
120120
## Related Topics
121121

122-
- [AnimationSet Class](https://docs.microsoft.com/windows/uwpcommunitytoolkit/animations/animationset)
122+
- [AnimationSet Class](https://docs.microsoft.com/windows/communitytoolkit/animations/animationset)
123123
- [Storyboard Class](https://docs.microsoft.com/uwp/api/Windows.UI.Xaml.Media.Animation.Storyboard)

docs/animations/ImplicitAnimations.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ keywords: windows 10, uwp, windows community toolkit, uwp community toolkit, uwp
99

1010
Implicit Animations are Composition Animations that are used to describe how and when animations occur as a response to direct property changes, such as Opacity or Offset. Show and Hide animations describe the animation to be applied to an element when the Visibility is changed, or the element is added/removed to the visual tree.
1111

12-
**Prerequisites** - [Composition Animation in XAML](https://docs.microsoft.com/windows/uwpcommunitytoolkit/animations/compositionanimations)
12+
**Prerequisites** - [Composition Animation in XAML](https://docs.microsoft.com/windows/communitytoolkit/animations/compositionanimations)
1313

14-
The Implicit Animations Attached Properties enable implicit animations to be defined in your XAML code by using the [Composition Animation](https://docs.microsoft.com/windows/uwpcommunitytoolkit/animations/compositionanimations) XAML objects. This allows animations to be defined directly on the element, or defined as XAML resources and applied to any XAML element.
14+
The Implicit Animations Attached Properties enable implicit animations to be defined in your XAML code by using the [Composition Animation](https://docs.microsoft.com/windows/communitytoolkit/animations/compositionanimations) XAML objects. This allows animations to be defined directly on the element, or defined as XAML resources and applied to any XAML element.
1515

16-
The Implicit Animations Attached Properties can be used in combination with the [VisualExtensions](https://docs.microsoft.com/windows/uwpcommunitytoolkit/extensions/visualex). This works well when used in Storyboards.
16+
The Implicit Animations Attached Properties can be used in combination with the [VisualExtensions](https://docs.microsoft.com/windows/communitytoolkit/extensions/visualex). This works well when used in Storyboards.
1717

1818
## Syntax
1919

@@ -54,10 +54,10 @@ The Implicit Animations Attached Properties can be used in combination with the
5454
## Properties
5555

5656
### Implicit.Animations
57-
Specifies an [Composition Animation](https://docs.microsoft.com/windows/uwpcommunitytoolkit/animations/compositionanimations) with animations to run when properties are modified.
57+
Specifies an [Composition Animation](https://docs.microsoft.com/windows/communitytoolkit/animations/compositionanimations) with animations to run when properties are modified.
5858

5959
### Implicit.ShowAnimations and Implicit.HideAnimations
60-
Specifies an [Composition Animation](https://docs.microsoft.com/windows/uwpcommunitytoolkit/animations/compositionanimations) with animations to run when an element is added or removed from the visual tree respectively (including when Visibility on an element is changed).
60+
Specifies an [Composition Animation](https://docs.microsoft.com/windows/communitytoolkit/animations/compositionanimations) with animations to run when an element is added or removed from the visual tree respectively (including when Visibility on an element is changed).
6161

6262
## Examples
6363

docs/animations/Offset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,5 +156,5 @@ You can change the way how the animation interpolates between keyframes by defin
156156
157157
## Related Topics
158158

159-
- [AnimationSet Class](https://docs.microsoft.com/windows/uwpcommunitytoolkit/animations/animationset)
159+
- [AnimationSet Class](https://docs.microsoft.com/windows/communitytoolkit/animations/animationset)
160160
- [Storyboard Class](https://docs.microsoft.com/uwp/api/Windows.UI.Xaml.Media.Animation.Storyboard)

docs/animations/Rotate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,4 @@ You can change the way how the animation interpolates between keyframes by defin
123123
124124
## Related Topics
125125

126-
- [AnimationSet Class](https://docs.microsoft.com/windows/uwpcommunitytoolkit/animations/animationset)
126+
- [AnimationSet Class](https://docs.microsoft.com/windows/communitytoolkit/animations/animationset)

docs/animations/Saturation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,5 @@ ToolkitLogo.Saturation(value:=0, duration:=500, delay:=250)
127127
128128
## Related Topics
129129

130-
- [AnimationSet Class](https://docs.microsoft.com/windows/uwpcommunitytoolkit/animations/animationset)
130+
- [AnimationSet Class](https://docs.microsoft.com/windows/communitytoolkit/animations/animationset)
131131
- [SaturationEffect Class](http://microsoft.github.io/Win2D/html/T_Microsoft_Graphics_Canvas_Effects_SaturationEffect.htm)

docs/animations/Scale.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,5 +154,5 @@ You can change the way how the animation interpolates between keyframes by defin
154154
155155
## Related Topics
156156

157-
- [AnimationSet Class](https://docs.microsoft.com/windows/uwpcommunitytoolkit/animations/animationset)
157+
- [AnimationSet Class](https://docs.microsoft.com/windows/communitytoolkit/animations/animationset)
158158
- [Storyboard Class](https://docs.microsoft.com/uwp/api/Windows.UI.Xaml.Media.Animation.Storyboard)

docs/breadcrumb/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
topicHref: /windows/
88
items:
99
- name: Windows Community Toolkit
10-
tocHref: /windows/uwpcommunitytoolkit/
11-
topicHref: /windows/uwpcommunitytoolkit
10+
tocHref: /windows/communitytoolkit/
11+
topicHref: /windows/communitytoolkit

0 commit comments

Comments
 (0)