File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Microsoft.Toolkit.Uwp.UI.Animations/Builders Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,9 @@ private AnimationBuilder()
37
37
/// </para>
38
38
/// For instance:
39
39
/// <code>
40
- /// AnimationBuilder.Create()<br/>
41
- /// .Opacity(from: 0, to: 1)<br/>
42
- /// .Translation(Axis.X, from: -40, to: 0)<br/>
40
+ /// AnimationBuilder.Create()
41
+ /// .Opacity(from: 0, to: 1)
42
+ /// .Translation(Axis.X, from: -40, to: 0)
43
43
/// .Start(MyButton);
44
44
/// </code>
45
45
/// <para>
@@ -48,9 +48,9 @@ private AnimationBuilder()
48
48
/// </para>
49
49
/// For instance:
50
50
/// <code>
51
- /// var animation = AnimationBuilder.Create().Opacity(0, 1).Size(1.2, 1);<br/>
52
- /// <br/>
53
- /// animation.Start(MyButton);<br/>
51
+ /// var animation = AnimationBuilder.Create().Opacity(0, 1).Size(1.2, 1);
52
+ ///
53
+ /// animation.Start(MyButton);
54
54
/// animation.Start(MyGrid);
55
55
/// </code>
56
56
/// Alternatively, the <see cref="AnimationSet"/> type can be used to configure animations directly from XAML.
You can’t perform that action at this time.
0 commit comments