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()
3737 /// </para>
3838 /// For instance:
3939 /// <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)
4343 /// .Start(MyButton);
4444 /// </code>
4545 /// <para>
@@ -48,9 +48,9 @@ private AnimationBuilder()
4848 /// </para>
4949 /// For instance:
5050 /// <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);
5454 /// animation.Start(MyGrid);
5555 /// </code>
5656 /// 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