using System.Windows; namespace TerminalKFC.Windows { /// /// Логика взаимодействия для SeatSelectionWindow.xaml /// public partial class SeatSelectionWindow : Window { public SeatSelectionWindow() { InitializeComponent(); } private void Button(object sender, RoutedEventArgs e) { this.Close(); } } }