MVVM Implementing started

This commit is contained in:
2023-03-25 12:34:24 +01:00
parent 47535950b2
commit b1ef5cffb5
36 changed files with 844 additions and 5 deletions

View File

@@ -0,0 +1,36 @@
<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>
<StackPanel>
<syncfusion:SfMultiColumnDropDownControl
Width="250"
Height="24"
Margin="10,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
AllowAutoComplete="True"
AllowImmediatePopup="True"
AllowIncrementalFiltering="True"
AutoGenerateColumns="False"
DisplayMember="Title"
HeaderTemplate="{StaticResource headerTemplate}"
PopupWidth="400"
ValueMember="Cast"
>
</syncfusion:SfMultiColumnDropDownControl>
</StackPanel>
</Grid>
</UserControl>