This commit is contained in:
abdelaziz
2026-03-30 07:49:37 +02:00
parent 9440351bc0
commit bc4118704e
21 changed files with 1785 additions and 124 deletions
@@ -0,0 +1,16 @@
using System.Windows;
namespace CheckersSpielBot
{
public partial class HistoryDialog : Window
{
public HistoryDialog()
{
InitializeComponent();
var db = new DatabaseService();
var history = db.GetHistory(PlayerSession.PlayerId);
HistoryGrid.ItemsSource = history;
}
}
}