Durchlaufene Menu erzeugt

This commit is contained in:
HuskyTeufel
2022-05-30 17:04:24 +02:00
parent 455f57fd35
commit 7bf5d1ad05
16 changed files with 303 additions and 22 deletions

View File

@@ -10,6 +10,6 @@
<Grid>
<Label>Auftraggebers</Label>
<ListBox ItemsSource="{Binding Auftraggeberlist}"></ListBox>
<ListBox ItemsSource="{Binding Auftraggeberlist}" SelectedItem="{Binding Path=SelectedAuftraggeber}"></ListBox>
</Grid>
</UserControl>

View File

@@ -0,0 +1,12 @@
<UserControl x:Class="GuiWPF.Views.BauvorhabenListPageView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:GuiWPF.Views"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
<ListBox ItemsSource="{Binding BauvorhabenList}" SelectedItem="{Binding SelectedBauvorhaben}" />
</Grid>
</UserControl>

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace GuiWPF.Views
{
/// <summary>
/// Interaction logic for BauvorhabenListPageView.xaml
/// </summary>
public partial class BauvorhabenListPageView : UserControl
{
public BauvorhabenListPageView()
{
InitializeComponent();
}
}
}

View File

@@ -0,0 +1,12 @@
<UserControl x:Class="GuiWPF.Views.SewerObjectListPageView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:GuiWPF.Views"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
<ListBox ItemsSource="{Binding Path=SewerObjects}" SelectedItem="{Binding Path=SelectedSewer}" />
</Grid>
</UserControl>

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace GuiWPF.Views
{
/// <summary>
/// Interaction logic for SewerObjectListPageView.xaml
/// </summary>
public partial class SewerObjectListPageView : UserControl
{
public SewerObjectListPageView()
{
InitializeComponent();
}
}
}