Use background-derived hover color for nav buttons

This commit is contained in:
Meik
2026-03-05 12:45:01 +01:00
parent fe70433346
commit 3a279a1b26

View File

@@ -1834,18 +1834,19 @@ namespace C4IT_CustomerPanel
}
}
public void Button_MouseEnter(object sender, EventArgs e)
{
try
{
if (!(sender is Button bu))
return;
bu.Background = System.Windows.Media.Brushes.Transparent;
}
catch (Exception exp)
{
cLogManager.LogException(exp);
public void Button_MouseEnter(object sender, EventArgs e)
{
try
{
if (!(sender is Button bu))
return;
Color hoverColor = ConfigSettings.GetButtonHoverColor(ConfigSettings.GetBackgroundColor().Color);
bu.Background = new SolidColorBrush(hoverColor);
}
catch (Exception exp)
{
cLogManager.LogException(exp);
}
}