92 lines
3.8 KiB
XML
92 lines
3.8 KiB
XML
<UserControl x:Class="SewerStammGen.Views.UCSewerConnector"
|
|
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:syncfusion="http://schemas.syncfusion.com/wpf"
|
|
xmlns:local="clr-namespace:SewerStammGen.Views"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<UserControl.Resources>
|
|
<DataTemplate x:Key="headerTemplate">
|
|
<TextBox></TextBox>
|
|
</DataTemplate>
|
|
</UserControl.Resources>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Grid Grid.Row="0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Grid.Row="0" Grid.Column="0" FontSize="20" Content="Obere Schacht" />
|
|
<Label Grid.Row="1" Grid.Column="0" FontSize="20" Content="Untere Schacht" />
|
|
<Label Grid.Row="2" Grid.Column="0" FontSize="20" Content="Haltungsbezeichnung" />
|
|
|
|
<syncfusion:SfMultiColumnDropDownControl Grid.Column="1" Grid.Row="0"
|
|
Width="250"
|
|
|
|
Margin="10,0"
|
|
FontSize="20"
|
|
HorizontalAlignment="Left"
|
|
VerticalAlignment="Top"
|
|
AllowAutoComplete="True"
|
|
AllowImmediatePopup="True"
|
|
AllowIncrementalFiltering="True"
|
|
AutoGenerateColumns="False"
|
|
DisplayMember="Title"
|
|
HeaderTemplate="{StaticResource headerTemplate}"
|
|
PopupWidth="400"
|
|
ValueMember="Cast"
|
|
>
|
|
|
|
</syncfusion:SfMultiColumnDropDownControl>
|
|
<syncfusion:SfMultiColumnDropDownControl Grid.Column="1" Grid.Row="1"
|
|
Width="250"
|
|
|
|
Margin="10,0"
|
|
FontSize="20"
|
|
HorizontalAlignment="Left"
|
|
VerticalAlignment="Top"
|
|
AllowAutoComplete="True"
|
|
AllowImmediatePopup="True"
|
|
AllowIncrementalFiltering="True"
|
|
AutoGenerateColumns="False"
|
|
DisplayMember="Title"
|
|
HeaderTemplate="{StaticResource headerTemplate}"
|
|
PopupWidth="400"
|
|
ValueMember="Cast"
|
|
></syncfusion:SfMultiColumnDropDownControl>
|
|
<TextBox Grid.Row="2" Grid.Column="1" FontSize="20" Margin="5" />
|
|
</Grid>
|
|
|
|
<Grid Grid.Row="1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Label VerticalAlignment="Center" Grid.Row="0" Grid.Column="0" FontSize="20" Content="Material" />
|
|
<Label VerticalAlignment="Center" Grid.Row="1" Grid.Column="0" FontSize="20" Content="Durchmesser" />
|
|
<TextBox Grid.Row="0" Grid.Column="1" Margin="5" FontSize="20" Text="{Binding X}" />
|
|
<TextBox Grid.Row="1" Grid.Column="1" Margin="5" FontSize="20" Text="{Binding X}" />
|
|
</Grid>
|
|
<StackPanel Grid.Row="3">
|
|
<Button FontSize="20" Content="Speichern" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</UserControl>
|