feat(ui): Log Visualizer overlay reachable from a clickable footer log line
This commit is contained in:
@@ -104,6 +104,13 @@ public sealed class WindowDialogService : IDialogService
|
||||
await dlg.ShowDialog(_owner);
|
||||
}
|
||||
|
||||
public async Task ShowLogVisualizerAsync(LogVisualizerViewModel vm)
|
||||
{
|
||||
var dlg = new LogVisualizerView { DataContext = vm };
|
||||
vm.CloseAction = () => dlg.Close();
|
||||
await dlg.ShowDialog(_owner);
|
||||
}
|
||||
|
||||
public Task<bool> ConfirmAsync(string message)
|
||||
{
|
||||
var tcs = new TaskCompletionSource<bool>();
|
||||
|
||||
Reference in New Issue
Block a user