-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#19 - load style settings every preview form activation
- Loading branch information
1 parent
7b3d3f5
commit d95f19a
Showing
7 changed files
with
85 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,17 @@ | ||
using FancyMouse.Models.Styles; | ||
using NLog; | ||
using NLog; | ||
|
||
namespace FancyMouse.UI; | ||
|
||
internal sealed class FancyMouseDialogOptions | ||
{ | ||
public FancyMouseDialogOptions( | ||
ILogger logger, | ||
PreviewStyle previewStyle) | ||
ILogger logger) | ||
{ | ||
this.Logger = logger ?? throw new ArgumentNullException(nameof(logger)); | ||
this.PreviewStyle = previewStyle ?? throw new ArgumentNullException(nameof(previewStyle)); | ||
} | ||
|
||
public ILogger Logger | ||
{ | ||
get; | ||
} | ||
|
||
public PreviewStyle PreviewStyle | ||
{ | ||
get; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters