Skip to content

Commit 3d59006

Browse files
committed
corrected the type of the ActionCommandParameter property
1 parent 5560580 commit 3d59006

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MaterialDesignThemes.Wpf/Snackbar.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ public ICommand ActionCommand
7171
/// <summary>
7272
/// A parameter for the <see cref="ActionCommand"/>.
7373
/// </summary>
74-
public ICommand ActionCommandParameter
74+
public object ActionCommandParameter
7575
{
7676
get
7777
{
78-
return (ICommand)GetValue(ActionCommandParameterProperty);
78+
return GetValue(ActionCommandParameterProperty);
7979
}
8080

8181
set

0 commit comments

Comments
 (0)