Skip to content

Commit

Permalink
Updated UI
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaifm committed Oct 3, 2022
1 parent 578b4fc commit 3787d31
Show file tree
Hide file tree
Showing 21 changed files with 900 additions and 157 deletions.
20 changes: 20 additions & 0 deletions ElegantOptions.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
namespace ElegantRecorder
{
public class ElegantOptions
{
public string PlaybackSpeed { get; set; }
public bool RecordMouseMove { get; set; }
public bool RestrictToExe { get; set; }
public string ExePath { get; set; }
public string RecordingPath { get; set; }

public ElegantOptions()
{
PlaybackSpeed = "Normal";
RecordMouseMove = false;
RestrictToExe = false;
ExePath = "";
RecordingPath = System.Windows.Forms.Application.StartupPath + "ElegantRecording.json";
}
}
}
164 changes: 69 additions & 95 deletions ElegantRecorder.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3787d31

Please sign in to comment.