mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-04 20:21:18 +08:00
DEBUG
This commit is contained in:
parent
fed3f4a483
commit
66578f052f
@ -135,6 +135,7 @@ public:
|
||||
Trace::InvokedRet(result);
|
||||
return result;
|
||||
}
|
||||
create_pipe_thread.join();
|
||||
|
||||
if (hPipe != INVALID_HANDLE_VALUE)
|
||||
{
|
||||
|
@ -82,7 +82,11 @@ namespace PowerToys.FileLocksmithUI.ViewModels
|
||||
var args = Environment.GetCommandLineArgs();
|
||||
var pipeName = args.Where(s => s.Contains("\\\\.\\pipe\\")).FirstOrDefault();
|
||||
|
||||
MessageBox.Show(args.ToString());
|
||||
foreach (var s in args)
|
||||
{
|
||||
MessageBox.Show(s);
|
||||
}
|
||||
|
||||
paths = NativeMethods.ReadPathsFromPipe(pipeName);
|
||||
Logger.LogInfo($"Starting FileLocksmith with {paths.Length} files selected.");
|
||||
LoadProcessesCommand = new AsyncRelayCommand(LoadProcessesAsync);
|
||||
|
Loading…
Reference in New Issue
Block a user