Bewertungssystem angefangen
This commit is contained in:
@@ -4,11 +4,12 @@
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:local="clr-namespace:dcnsanplanung.wpf"
|
||||
xmlns:viewmodel="clr-namespace:dcnsanplanung.wpf.ViewModel"
|
||||
mc:Ignorable="d"
|
||||
Title="MainWindow" Height="450" Width="800" Loaded="Window_Loaded">
|
||||
Title="MainWindow" Height="450" Width="800">
|
||||
<Grid>
|
||||
<StackPanel>
|
||||
<ComboBox Name="Items" SelectionChanged="Items_SelectionChanged">
|
||||
<ComboBox ItemsSource="{Binding VerfügbareHaltungen}" SelectedItem="{Binding SelectedHaltung}" SelectionChanged="Items_SelectionChanged">
|
||||
<ComboBox.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<StackPanel Orientation="Horizontal">
|
||||
@@ -19,8 +20,8 @@
|
||||
</DataTemplate>
|
||||
</ComboBox.ItemTemplate>
|
||||
</ComboBox>
|
||||
|
||||
<Button Name="LoadXML" Click="LoadXML_Click" Content="LoadXML" />
|
||||
|
||||
<Button Name="LoadXML" Command="{Binding LoadXMLFile}" Content="LoadXML" />
|
||||
</StackPanel>
|
||||
|
||||
</Grid>
|
||||
|
||||
Reference in New Issue
Block a user