Skip to content
This repository has been archived by the owner on Mar 15, 2022. It is now read-only.

Commit

Permalink
Update SettingsProgramClass.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Hlebushek2020 committed Mar 11, 2021
1 parent 6cae9f3 commit d4f6df3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PasswordManager/Classes/SettingsProgramClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ public void SetBackground()

#region Menu Background
public SolidColorBrush MenuBackground { get; set; } = Brushes.Transparent;
public SolidColorBrush MenuBackgroundMouseOver { get; private set; } = new SolidColorBrush(Color.FromArgb(127, 255, 255, 255));
public SolidColorBrush MenuBackgroundPressed { get; private set; } = new SolidColorBrush(Color.FromArgb(127, 255, 255, 255));
public SolidColorBrush MenuBackgroundMouseOver { get; set; } = new SolidColorBrush(Color.FromArgb(127, 255, 255, 255));
public SolidColorBrush MenuBackgroundPressed { get; set; } = new SolidColorBrush(Color.FromArgb(127, 255, 255, 255));
public Dictionary<Windows, bool> MenuBackgroundFlags { get; } = new Dictionary<Windows, bool>()
{
{ Windows.Main, false },
Expand Down

0 comments on commit d4f6df3

Please sign in to comment.