Added Action content to SettingsExpander

This commit is contained in:
TheXamlGuy
2024-07-06 12:11:39 +01:00
parent b991047d5a
commit 4bdff3640d
12 changed files with 78 additions and 55 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ namespace Wallet;
public record Closed
{
public static ChangedEventArgs<TValue> As<TValue>(TValue value) => new(value);
public static ClosedEventArgs<TValue> As<TValue>(TValue value) => new(value);
public static ChangedEventArgs<TValue> As<TValue>() where TValue : new() => new(new TValue());
public static ClosedEventArgs<TValue> As<TValue>() where TValue : new() => new(new TValue());
}