Files
dcnsanplanung/dcnsanplanung.wpf/MainWindow.xaml

28 lines
1.2 KiB
XML

<Window x:Class="dcnsanplanung.wpf.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:dcnsanplanung.wpf"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800" Loaded="Window_Loaded">
<Grid>
<StackPanel>
<ComboBox Name="Items" SelectionChanged="Items_SelectionChanged">
<ComboBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Objektbezeichnung}" />
<TextBlock Text=" | " />
<TextBlock Text="{Binding Bewertungklasse}" />
</StackPanel>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
<Button Name="LoadXML" Click="LoadXML_Click" Content="LoadXML" />
</StackPanel>
</Grid>
</Window>