Skip to content

Commit

Permalink
Replaced screen inheritance from my models to propertychangedbase
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdesol committed Aug 11, 2021
1 parent 718e7a1 commit fe0b201
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CutCode/Models/CodeBoxModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace CutCode
{
public class CodeBoxModel : Screen
public class CodeBoxModel : PropertyChangedBase
{
public int id { get; set; }
private string _title;
Expand Down
2 changes: 1 addition & 1 deletion CutCode/Models/SideBarBtnModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static class SideBarBtns
public static List<string> SideBarBtnsLightTheme = new List<string>() { "home_black.png", "add_black.png", "fav_black.png", "settings_black.png" };

}
public class SideBarBtnModel : Screen
public class SideBarBtnModel : PropertyChangedBase
{
private readonly IThemeService themeService;
private List<string> btnBothimages = new List<string>();
Expand Down
2 changes: 1 addition & 1 deletion CutCode/Models/ThemeButtonModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace CutCode
{
public class ThemeButtonModel : Screen
public class ThemeButtonModel : PropertyChangedBase
{
private readonly IThemeService themeService;
public ThemeButtonModel(string _text, IThemeService _themeService)
Expand Down
Binary file removed CutCode/Release/CutCode Installer.exe
Binary file not shown.

0 comments on commit fe0b201

Please sign in to comment.