blob: a7e3207e7adb54176cb96b6723356883da951c92 [file] [log] [blame]
tkuhn1l6e4eb4cd2019-05-16 11:06:07 +02001using Newtonsoft.Json;
2using System;
3using System.Collections.Generic;
4using System.IO;
5using System.Linq;
6using System.Text;
7using System.Threading.Tasks;
8using System.Windows;
9using System.Windows.Controls;
10using System.Windows.Data;
11using System.Windows.Documents;
12using System.Windows.Input;
13using System.Windows.Media;
14using System.Windows.Media.Imaging;
15using System.Windows.Navigation;
16using System.Windows.Shapes;
17
18/* Copyright (c) 2018-2019 Festo AG & Co. KG <https://www.festo.com/net/de_de/Forms/web/contact_international>, author: Michael Hoffmeister
19This software is licensed under the Eclipse Public License - v 2.0 (EPL-2.0) (see https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt).
20The browser functionality is under the cefSharp license (see https://raw.githubusercontent.com/cefsharp/CefSharp/master/LICENSE).
21The JSON serialization is under the MIT license (see https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md). */
22
23namespace AasxPackageExplorer
24{
25 /// <summary>
26 /// Interaktionslogik für SelectFromRepository.xaml
27 /// </summary>
28 public partial class EmptyFlyout : UserControl, IFlyoutControl
29 {
30 public event IFlyoutControlClosed ControlClosed;
31
32
33 public EmptyFlyout()
34 {
35 InitializeComponent();
36 }
37
38 //
39 // Outer
40 //
41
42 public void ControlStart()
43 {
44 }
45
46 public void ControlPreviewKeyDown(KeyEventArgs e)
47 {
48 }
49
50 //
51 // Mechanics
52 //
53
54 private void ButtonClose_Click(object sender, RoutedEventArgs e)
55 {
56 ControlClosed();
57 }
58
59 private void UserControl_Loaded(object sender, RoutedEventArgs e)
60 {
61 }
62 }
63}