Run PDF creation async and show log/progress

This commit is contained in:
2026-01-03 22:09:11 +09:00
parent 280ad26f58
commit c298c143f5
3 changed files with 86 additions and 22 deletions
+6
View File
@@ -9,6 +9,12 @@ namespace ReceiptPDFBuilder.Views
public MainView()
{
this.InitializeComponent();
LogBlock.PropertyChanged += LogBlock_PropertyChanged;
}
private void LogBlock_PropertyChanged(object? sender, AvaloniaPropertyChangedEventArgs e)
{
LogScrollView.ScrollToEnd();
}
}
}