Grundlegene Funktionen geschrieben
This commit is contained in:
@@ -5,8 +5,23 @@
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:local="clr-namespace:dcnsanplanung.wpf"
|
||||
mc:Ignorable="d"
|
||||
Title="MainWindow" Height="450" Width="800">
|
||||
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>
|
||||
|
||||
Reference in New Issue
Block a user