This commit is contained in:
Javier Calvarro Nelson
2025-12-10 17:08:40 +01:00
Unverified
parent 0340531f3a
commit 0eef9949bf
37 changed files with 75 additions and 173 deletions
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft. All rights reserved.
// Copyright (c) Microsoft. All rights reserved.
namespace AGUIDojoClient.Services;
@@ -13,7 +13,7 @@ public class BackgroundColorChangedEventArgs : EventArgs
/// <param name="color">The new background color.</param>
public BackgroundColorChangedEventArgs(string color)
{
Color = color;
this.Color = color;
}
/// <summary>
@@ -59,7 +59,7 @@ public class BackgroundColorService : IBackgroundColorService
/// <inheritdoc/>
public void SetColor(string color)
{
CurrentColor = color;
this.CurrentColor = color;
ColorChanged?.Invoke(this, new BackgroundColorChangedEventArgs(color));
}
}