Display AddModal

This commit is contained in:
Natlinux81
2022-08-13 23:07:43 +02:00
parent 2de986f5b8
commit 311cd83b70
10 changed files with 172 additions and 81 deletions

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace Apollon.WPF.Views
{
/// <summary>
/// Interaction logic for EditTournamentView.xaml
/// </summary>
public partial class EditTournamentView : UserControl
{
public EditTournamentView()
{
InitializeComponent();
}
}
}