Skip to content

Commit

Permalink
[housekeeping] Automated PR to fix formatting errors (#2292)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Oct 18, 2024
1 parent a9ab301 commit 32232da
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@ public class AnimationBehavior : EventToCommandBehavior
/// <remarks>
/// <see cref="AnimateCommand"/> has a <see cref="Type"/> of Command&lt;CancellationToken&gt; which requires a <see cref="CancellationToken"/> as a CommandParameter. See <see cref="Command{CancellationToken}"/> and <see cref="System.Windows.Input.ICommand.Execute(object)"/> for more information on passing a <see cref="CancellationToken"/> into <see cref="Command{T}"/> as a CommandParameter"
/// </remarks>
public Command<CancellationToken> AnimateCommand {
public Command<CancellationToken> AnimateCommand
{
get => (Command<CancellationToken>)GetValue(AnimateCommandProperty);
[Obsolete(
"""
[Obsolete(
"""
Do not use this setter, it only exists to enable XAML Hot reload support in your IDE.
Instead, apps should provide a value for this OneWayToSource property by creating a binding, in XAML or C#. If done via C# use code like this:
Expand Down

0 comments on commit 32232da

Please sign in to comment.