Daten werden nun geladen

This commit is contained in:
HuskyTeufel
2021-05-05 13:32:46 +02:00
parent af01e537cf
commit 5d89391e93
20 changed files with 236 additions and 170 deletions

View File

@@ -1,8 +1,14 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace GuiWPF {
public class DelegateCommand : ICommand {
namespace WPF
{
public class DelegateCommand : ICommand
{
/// <summary>
/// Action to be performed when this command is executed
/// </summary>
@@ -72,4 +78,4 @@ namespace GuiWPF {
this.executionAction(parameter);
}
}
}
}