add:点名历史查看

This commit is contained in:
CJK_mkp
2025-11-08 18:01:56 +08:00
parent 4b2f29442a
commit a8dcbd4af0
4 changed files with 258 additions and 1 deletions
@@ -856,6 +856,21 @@ namespace Ink_Canvas
}
}
private void ViewHistory_Click(object sender, RoutedEventArgs e)
{
try
{
// 打开历史记录查看窗口
var historyWindow = new RollCallHistoryWindow();
historyWindow.ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show($"打开历史记录失败: {ex.Message}", "错误", MessageBoxButton.OK, MessageBoxImage.Error);
LogHelper.WriteLogToFile($"打开历史记录失败: {ex.Message}", LogHelper.LogType.Error);
}
}
private void LoadNamesFromFile()
{
try