tkuhn1l6 | e4eb4cd | 2019-05-16 11:06:07 +0200 | [diff] [blame] | 1 | <Window x:Class="AasxPackageExplorer.SelectAasEntityDialogueByTree" |
| 2 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| 3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| 4 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| 5 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| 6 | xmlns:local="clr-namespace:AasxPackageExplorer" |
| 7 | mc:Ignorable="d" |
| 8 | Title="Select AAS entity .." Height="300" Width="542.535" Loaded="Window_Loaded"> |
| 9 | |
| 10 | <!-- Copyright (c) 2018-2019 Festo AG & Co. KG <https://www.festo.com/net/de_de/Forms/web/contact_international>, author: Michael Hoffmeister |
| 11 | 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). |
| 12 | The browser functionality is under the cefSharp license (see https://raw.githubusercontent.com/cefsharp/CefSharp/master/LICENSE). |
| 13 | The JSON serialization is under the MIT license (see https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md). --> |
| 14 | |
| 15 | <Grid> |
| 16 | |
| 17 | <Grid.ColumnDefinitions> |
| 18 | <ColumnDefinition/> |
| 19 | </Grid.ColumnDefinitions> |
| 20 | |
| 21 | <Grid.RowDefinitions> |
| 22 | <RowDefinition Height="Auto"/> |
| 23 | <RowDefinition Height="1*"/> |
| 24 | <RowDefinition Height="Auto"/> |
| 25 | </Grid.RowDefinitions> |
| 26 | |
| 27 | <DockPanel Grid.Row="0" Margin="4"> |
| 28 | <Label>Filter:</Label> |
| 29 | <ComboBox x:Name="ComboBoxFilter" HorizontalAlignment="Stretch" SelectionChanged="ComboBoxFilter_SelectionChanged"/> |
| 30 | </DockPanel> |
| 31 | |
| 32 | |
| 33 | <local:DiplayVisualAasxElements Grid.Row="1" Grid.Column="0" x:Name="DisplayElements" MouseDoubleClick="DisplayElements_MouseDoubleClick"> |
| 34 | </local:DiplayVisualAasxElements> |
| 35 | |
| 36 | |
| 37 | <Button x:Name="ButtonSelect" IsDefault="True" Grid.Row="2" Content="Select!" Padding="6" Margin="4" Click="ButtonSelect_Click"/> |
| 38 | |
| 39 | </Grid> |
| 40 | </Window> |