更改命名

This commit is contained in:
2021-10-19 23:17:30 +02:00
parent 6f5c21aa8f
commit 23207b9085
7 changed files with 21 additions and 21 deletions

View File

@@ -88,9 +88,9 @@ namespace AnotherReplayReader
private Debug() { }
private void OnExport_Click(object sender, RoutedEventArgs e) => Export(this);
private void OnExportButtonClick(object sender, RoutedEventArgs e) => Export(this);
private void OnClear_Click(object sender, RoutedEventArgs e) => _textBox.Clear();
private void OnClearButtonClick(object sender, RoutedEventArgs e) => _textBox.Clear();
private void AppendText(string s) => Dispatcher.InvokeAsync(() => _textBox.AppendText(s));