tkuhn1l6 | e4eb4cd | 2019-05-16 11:06:07 +0200 | [diff] [blame] | 1 | using Newtonsoft.Json; |
| 2 | using System; |
| 3 | using System.Collections.Generic; |
| 4 | using System.IO; |
| 5 | using System.Linq; |
| 6 | using System.Text; |
| 7 | using System.Threading.Tasks; |
| 8 | using System.Windows; |
| 9 | using System.Windows.Controls; |
| 10 | using System.Windows.Data; |
| 11 | using System.Windows.Documents; |
| 12 | using System.Windows.Input; |
| 13 | using System.Windows.Media; |
| 14 | using System.Windows.Media.Imaging; |
| 15 | using System.Windows.Navigation; |
| 16 | using 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 |
| 19 | This 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). |
| 20 | The browser functionality is under the cefSharp license (see https://raw.githubusercontent.com/cefsharp/CefSharp/master/LICENSE). |
| 21 | The JSON serialization is under the MIT license (see https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md). */ |
| 22 | |
| 23 | namespace 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 | } |