├── .gitignore ├── .run └── CallRecording.run.xml ├── App.config ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── CallRecording.csproj ├── CallRecording.csproj.user ├── CallRecording.sln ├── Converters └── DoubleToThicknessConverter.cs ├── GlobalsVariables.cs ├── Models ├── AntiDebugHelper.cs ├── GlobalHook.cs ├── GlobalHotkey.cs ├── HolidayGreeter.cs ├── Logms.cs ├── Recorder.cs ├── Utils.cs ├── WindowInfo.cs └── WindowMonitor.cs ├── NLog.config ├── Properties └── PublishProfiles │ ├── FolderProfile.pubxml │ └── FolderProfile.pubxml.user ├── README.md ├── Services ├── NotificationService.cs └── TrayIconService.cs ├── ViewModels ├── AudioManagerViewModel.cs ├── AudioPlayerViewModel.cs ├── GlobalMVVM.cs ├── MainViewModel.cs └── ViewModelBase.cs ├── Views ├── AudioManagerWindow.xaml ├── AudioManagerWindow.xaml.cs ├── AudioPlayerWindow.xaml ├── AudioPlayerWindow.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MarkerWindow.cs ├── UpdateLog.xaml └── UpdateLog.xaml.cs ├── app.manifest ├── appsettings.json └── src ├── 通用软件图片.ico └── 通用软件图片闪动.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/.gitignore -------------------------------------------------------------------------------- /.run/CallRecording.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/.run/CallRecording.run.xml -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/App.config -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/AssemblyInfo.cs -------------------------------------------------------------------------------- /CallRecording.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/CallRecording.csproj -------------------------------------------------------------------------------- /CallRecording.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/CallRecording.csproj.user -------------------------------------------------------------------------------- /CallRecording.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/CallRecording.sln -------------------------------------------------------------------------------- /Converters/DoubleToThicknessConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Converters/DoubleToThicknessConverter.cs -------------------------------------------------------------------------------- /GlobalsVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/GlobalsVariables.cs -------------------------------------------------------------------------------- /Models/AntiDebugHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Models/AntiDebugHelper.cs -------------------------------------------------------------------------------- /Models/GlobalHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Models/GlobalHook.cs -------------------------------------------------------------------------------- /Models/GlobalHotkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Models/GlobalHotkey.cs -------------------------------------------------------------------------------- /Models/HolidayGreeter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Models/HolidayGreeter.cs -------------------------------------------------------------------------------- /Models/Logms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Models/Logms.cs -------------------------------------------------------------------------------- /Models/Recorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Models/Recorder.cs -------------------------------------------------------------------------------- /Models/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Models/Utils.cs -------------------------------------------------------------------------------- /Models/WindowInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Models/WindowInfo.cs -------------------------------------------------------------------------------- /Models/WindowMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Models/WindowMonitor.cs -------------------------------------------------------------------------------- /NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/NLog.config -------------------------------------------------------------------------------- /Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Properties/PublishProfiles/FolderProfile.pubxml.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/README.md -------------------------------------------------------------------------------- /Services/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Services/NotificationService.cs -------------------------------------------------------------------------------- /Services/TrayIconService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Services/TrayIconService.cs -------------------------------------------------------------------------------- /ViewModels/AudioManagerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/ViewModels/AudioManagerViewModel.cs -------------------------------------------------------------------------------- /ViewModels/AudioPlayerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/ViewModels/AudioPlayerViewModel.cs -------------------------------------------------------------------------------- /ViewModels/GlobalMVVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/ViewModels/GlobalMVVM.cs -------------------------------------------------------------------------------- /ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Views/AudioManagerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Views/AudioManagerWindow.xaml -------------------------------------------------------------------------------- /Views/AudioManagerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Views/AudioManagerWindow.xaml.cs -------------------------------------------------------------------------------- /Views/AudioPlayerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Views/AudioPlayerWindow.xaml -------------------------------------------------------------------------------- /Views/AudioPlayerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Views/AudioPlayerWindow.xaml.cs -------------------------------------------------------------------------------- /Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Views/MainWindow.xaml -------------------------------------------------------------------------------- /Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Views/MarkerWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Views/MarkerWindow.cs -------------------------------------------------------------------------------- /Views/UpdateLog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Views/UpdateLog.xaml -------------------------------------------------------------------------------- /Views/UpdateLog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/Views/UpdateLog.xaml.cs -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/app.manifest -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/appsettings.json -------------------------------------------------------------------------------- /src/通用软件图片.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/src/通用软件图片.ico -------------------------------------------------------------------------------- /src/通用软件图片闪动.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1592363624/CallRecording/HEAD/src/通用软件图片闪动.ico --------------------------------------------------------------------------------