577 lines
29 KiB
XML
577 lines
29 KiB
XML
<UserControl
|
|
x:Class="BeWo.View.Controls.Wohnhilfe.CustomerWohnhilfeControl"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:cs="ignorablePrefix"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
|
|
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
|
|
xmlns:dxei="http://schemas.devexpress.com/winfx/2008/xaml/editors/internal"
|
|
xmlns:dxepc="http://schemas.devexpress.com/winfx/2008/xaml/editors"
|
|
xmlns:dxet="http://schemas.devexpress.com/winfx/2008/xaml/editors/themekeys"
|
|
xmlns:local="clr-namespace:BeWo.View.Controls.Wohnhilfe"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:uc="clr-namespace:BeWo.Controls;assembly=BeWo.Controls"
|
|
xmlns:viewmodel="clr-namespace:BeWo.ViewModel"
|
|
xmlns:wohnhilfe="clr-namespace:BeWo.View.Controls.Wohnhilfe"
|
|
x:Name="root_usercontrol"
|
|
d:DataContext="{d:DesignInstance d:Type=viewmodel:CustomerWohnhilfeVM,
|
|
IsDesignTimeCreatable=True}"
|
|
d:DesignHeight="1450"
|
|
d:DesignWidth="1800"
|
|
SizeChanged="UserControl_SizeChanged"
|
|
mc:Ignorable="d cs">
|
|
<UserControl.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="..\..\..\Styles\PrototypeStyles.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
<Style BasedOn="{StaticResource ObjectEditGroupBox}" TargetType="{x:Type GroupBox}">
|
|
<Setter Property="Margin" Value="15" />
|
|
<Setter Property="Padding" Value="10,7,7,5" />
|
|
</Style>
|
|
<Style x:Key="StackpanelDetailsStyle" TargetType="{x:Type StackPanel}">
|
|
<Setter Property="Margin" Value="40,-1,0,3" />
|
|
</Style>
|
|
<Style BasedOn="{StaticResource EnumTranslationNullItemComboBox}" TargetType="{x:Type uc:NullItemComboBox}" />
|
|
<Style BasedOn="{StaticResource EnumTranslationComboBox}" TargetType="{x:Type ComboBox}" />
|
|
</ResourceDictionary>
|
|
</UserControl.Resources>
|
|
<ScrollViewer
|
|
x:Name="scrollviewer"
|
|
HorizontalScrollBarVisibility="Auto"
|
|
VerticalScrollBarVisibility="Auto">
|
|
<Grid x:Name="grid">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition x:Name="grid_secondcolumn" Width="2*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<!--<GroupBox Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="4" x:Name="EintraegeGrid" Style="{StaticResource ObjectEditGroupBox}" Header="Notizen">
|
|
|
|
</GroupBox>-->
|
|
|
|
<GroupBox
|
|
x:Name="groupbox_1"
|
|
Grid.Row="0"
|
|
Grid.Column="0"
|
|
DataContext="{Binding BereichBundVM}"
|
|
Header="Bereich Bund">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="auto" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
</Grid.RowDefinitions>
|
|
<Label Grid.Row="0" Grid.Column="0">B1010 Verbandszugehörigkeit der Eintrichtung</Label>
|
|
<uc:NullItemComboBox
|
|
Grid.Row="0"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding VerbandszugehorigkeitTypes}"
|
|
SelectedValue="{Binding Verbandszugehorigkeit}" />
|
|
|
|
<Label Grid.Row="1" Grid.Column="0">B1020 Geschlecht nach Personenstandsurkunde</Label>
|
|
<uc:NullItemComboBox
|
|
Grid.Row="1"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding GeschlechtTypes}"
|
|
SelectedValue="{Binding Geschlecht}" />
|
|
|
|
<Label Grid.Row="2" Grid.Column="0">B1030 Alter am Stichtag</Label>
|
|
<dxe:TextEdit
|
|
Grid.Row="2"
|
|
Grid.Column="1"
|
|
Height="23"
|
|
Margin="3"
|
|
dxe:NumericMaskOptions.AlwaysShowDecimalSeparator="False"
|
|
EditValue="{Binding Path=AlterAmStichtag, UpdateSourceTrigger=PropertyChanged}"
|
|
Mask="#########"
|
|
MaskType="Numeric"
|
|
MaskUseAsDisplayFormat="True" />
|
|
|
|
<Label Grid.Row="3" Grid.Column="0">B1040 Haushaltsgröße</Label>
|
|
<dxe:TextEdit
|
|
Grid.Row="3"
|
|
Grid.Column="1"
|
|
Height="23"
|
|
Margin="3"
|
|
dxe:NumericMaskOptions.AlwaysShowDecimalSeparator="False"
|
|
EditValue="{Binding Path=Haushaltsgrosse, UpdateSourceTrigger=PropertyChanged}"
|
|
Mask="N0"
|
|
MaskType="Numeric"
|
|
MaskUseAsDisplayFormat="True" />
|
|
|
|
<Label Grid.Row="4" Grid.Column="0">B1050 BerichtseinheitID</Label>
|
|
<dxe:TextEdit
|
|
Grid.Row="4"
|
|
Grid.Column="1"
|
|
Height="23"
|
|
Margin="3"
|
|
dxe:NumericMaskOptions.AlwaysShowDecimalSeparator="False"
|
|
EditValue="{Binding Path=BerichtseinheitID, UpdateSourceTrigger=PropertyChanged}"
|
|
Mask="00000000000"
|
|
MaskType="Numeric"
|
|
MaskUseAsDisplayFormat="True" />
|
|
|
|
<Label Grid.Row="5" Grid.Column="0">B1060 Unterbringungsort</Label>
|
|
<uc:NullItemComboBox
|
|
Grid.Row="5"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding UnterbringungsartTypes}"
|
|
SelectedValue="{Binding Unterbringungsart}" />
|
|
|
|
<Label Grid.Row="6" Grid.Column="0">B1070 Ort der Unterbringung</Label>
|
|
<dxe:TextEdit
|
|
Grid.Row="6"
|
|
Grid.Column="1"
|
|
Height="23"
|
|
Margin="3"
|
|
dxe:NumericMaskOptions.AlwaysShowDecimalSeparator="False"
|
|
EditValue="{Binding Path=OrtDerEinrichtung, UpdateSourceTrigger=PropertyChanged}"
|
|
Mask="00000000"
|
|
MaskType="Numeric"
|
|
MaskUseAsDisplayFormat="True" />
|
|
|
|
<Label Grid.Row="7" Grid.Column="0">B1080 Angebot</Label>
|
|
<uc:NullItemComboBox
|
|
Grid.Row="7"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding AngebotTypes}"
|
|
SelectedValue="{Binding Angebot}" />
|
|
</Grid>
|
|
|
|
<!--<Label Grid.Row="0" Grid.Column="0" Content="Eigenes Aktenzeichen" />
|
|
<TextBox Grid.Row="0" Grid.Column="1" Margin="3" Height="23" Text="{Binding Path=EigenesAktenzeichen, UpdateSourceTrigger=PropertyChanged}" IsReadOnly="{Binding Path=PermissionFalldatenEdit, Mode=OneTime, Converter={StaticResource BoolReverseConverter}}"/>
|
|
<Label Grid.Row="1" Grid.Column="0" Content="Auftragseingang" IsEnabled="True" />
|
|
<dxe:DateEdit Grid.Row="1" Grid.Column="1" Margin="3" Height="23" ShowClearButton="False" EditValue="{Binding Path=Auftragseingang, UpdateSourceTrigger=PropertyChanged}"
|
|
IsEnabled="{Binding Path=PermissionFalldatenEdit, Mode=OneTime}"/>
|
|
<Label Grid.Row="2" Grid.Column="0" Content="Auftragsherkunft" />
|
|
<uc:NullItemComboBox x:Name="comboBox_Auftragsherkunft" Grid.Row="2" Grid.Column="1" Margin="3" Height="23" SelectedValue="{Binding Path=Auftragsherkunft, Mode=TwoWay}"
|
|
ItemsSource="{Binding Path=Auftragsherkunfte}" MinWidth="30" HorizontalAlignment="Stretch"
|
|
IsEnabled="{Binding Path=PermissionFalldatenEdit, Mode=OneTime}"/>-->
|
|
|
|
</GroupBox>
|
|
|
|
<GroupBox
|
|
x:Name="groupbox_2"
|
|
Grid.Row="0"
|
|
Grid.Column="1"
|
|
Grid.ColumnSpan="1"
|
|
DataContext="{Binding BereichEinkommenUndArbeitVM}"
|
|
Header="Bereich Einkommen und Arbeit">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="auto" />
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="auto" />
|
|
<ColumnDefinition Width="auto" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Label
|
|
Grid.Row="0"
|
|
Grid.Column="0"
|
|
Grid.ColumnSpan="2"
|
|
Style="{StaticResource TitleLabel}">
|
|
zu Beginn
|
|
</Label>
|
|
<Rectangle
|
|
Grid.Row="0"
|
|
Grid.RowSpan="20"
|
|
Grid.Column="2"
|
|
Width="1"
|
|
Margin="10,0,10,0"
|
|
VerticalAlignment="Stretch"
|
|
Fill="Black" />
|
|
<Label
|
|
Grid.Row="0"
|
|
Grid.Column="3"
|
|
Grid.ColumnSpan="2"
|
|
Style="{StaticResource TitleLabel}">
|
|
am Ende
|
|
</Label>
|
|
|
|
<Label Grid.Row="1" Grid.Column="0">W2010 Einkommenssituation</Label>
|
|
<ComboBox
|
|
Grid.Row="1"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding EinkommenssituationTypes}"
|
|
SelectedValue="{Binding BeginnEinkommenssituation}" />
|
|
<Label Grid.Row="1" Grid.Column="3">W2030 Einkommenssituation</Label>
|
|
<ComboBox
|
|
Grid.Row="1"
|
|
Grid.Column="4"
|
|
ItemsSource="{Binding EinkommenssituationTypes}"
|
|
SelectedValue="{Binding EndeEinkommenssituation}" />
|
|
|
|
<Label Grid.Row="2" Grid.Column="0">W2020 Aufstockung des Einkommens</Label>
|
|
<ComboBox
|
|
Grid.Row="2"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding AufstockungEinkommenTypes}"
|
|
SelectedValue="{Binding BeginnAufstockungEinkommen}" />
|
|
<Label Grid.Row="2" Grid.Column="3">W2040 Aufstockung des Einkommens</Label>
|
|
<ComboBox
|
|
Grid.Row="2"
|
|
Grid.Column="4"
|
|
ItemsSource="{Binding AufstockungEinkommenTypes}"
|
|
SelectedValue="{Binding EndeAufstockungEinkommen}" />
|
|
|
|
<Label Grid.Row="3" Grid.Column="0">W2050 Eigenes Bankkonto</Label>
|
|
<ComboBox
|
|
Grid.Row="3"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding WohnhilfeBoolDataTypes}"
|
|
SelectedValue="{Binding BeginnEigenesBankkonto}" />
|
|
<Label Grid.Row="3" Grid.Column="3">W2060 Eigenes Bankkonto</Label>
|
|
<ComboBox
|
|
x:Name="Combobox"
|
|
Grid.Row="3"
|
|
Grid.Column="4"
|
|
ItemsSource="{Binding WohnhilfeBoolDataTypes}"
|
|
SelectedValue="{Binding EndeEigenesBankkonto}" />
|
|
|
|
<Label Grid.Row="4" Grid.Column="0">W2070 Überschuldung</Label>
|
|
<ComboBox
|
|
Grid.Row="4"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding WohnhilfeBoolDataTypes}"
|
|
SelectedValue="{Binding Uberschuldung}" />
|
|
|
|
<Label Grid.Row="5" Grid.Column="0">G2080 Höchster erreichter Berufsabschluss</Label>
|
|
<ComboBox
|
|
Grid.Row="5"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding BerufsschulabschlussTypes}"
|
|
SelectedValue="{Binding Berufsabschluss}" />
|
|
|
|
<Label Grid.Row="6" Grid.Column="0">W2090 Erwerbsfähigkeit im Sinne des SGB:</Label>
|
|
<ComboBox
|
|
Grid.Row="6"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding WohnhilfeBoolDataTypes}"
|
|
SelectedValue="{Binding ErwerbsfahigkeitSinnSGB}" />
|
|
|
|
<Label Grid.Row="7" Grid.Column="0">W2100 Arbeits- und Beschäftigungssituation</Label>
|
|
<ComboBox
|
|
Grid.Row="7"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding BeschaftigungsstatusTypes}"
|
|
SelectedValue="{Binding BeginnBeschaftigungsstatus}" />
|
|
<Label Grid.Row="7" Grid.Column="3">W2110 Arbeits- und Beschäftigungssituation</Label>
|
|
<ComboBox
|
|
Grid.Row="7"
|
|
Grid.Column="4"
|
|
ItemsSource="{Binding BeschaftigungsstatusTypes}"
|
|
SelectedValue="{Binding EndeBeschaftigungsstatus}" />
|
|
|
|
<Label Grid.Row="8" Grid.Column="0">W2120 Dauer der Arbeitslosigkeit</Label>
|
|
<ComboBox
|
|
Grid.Row="8"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding DauerArbeitslosigkeitTypes}"
|
|
SelectedValue="{Binding DauerArbeitslosigkeit}" />
|
|
</Grid>
|
|
</GroupBox>
|
|
|
|
<GroupBox
|
|
x:Name="groupbox_3"
|
|
Grid.Row="1"
|
|
Grid.Column="0"
|
|
DataContext="{Binding BereichSozialstrukturVM}"
|
|
Header="Bereich Sozialstruktur">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="auto" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Label Grid.Row="0" Grid.Column="0">K0110 Bundesland</Label>
|
|
<ComboBox
|
|
Grid.Row="0"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding BundeslandTypes}"
|
|
SelectedValue="{Binding Bundesland}" />
|
|
|
|
<Label Grid.Row="1" Grid.Column="0">K0120 Art des Hilfefelds</Label>
|
|
<StackPanel
|
|
Grid.Row="1"
|
|
Grid.Column="1"
|
|
Orientation="Horizontal">
|
|
<RadioButton GroupName="Art" IsChecked="{Binding IsWohnungslosenhilfeSafe}">Wohnungslosenhilfe</RadioButton>
|
|
<RadioButton GroupName="Art" IsChecked="{Binding IsStraffaligenhilfeSafe}">Straffälligenhilfe</RadioButton>
|
|
</StackPanel>
|
|
|
|
<Label Grid.Row="2" Grid.Column="0">K0130 Art des Hilfeangebots</Label>
|
|
<ComboBox
|
|
Grid.Row="2"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding ArtDesHilfeangebotsTypes}"
|
|
SelectedValue="{Binding ArtDesHilfeangebots}" />
|
|
|
|
<Label Grid.Row="3" Grid.Column="0">K0140 Betreuungsbeginn</Label>
|
|
<dxe:DateEdit
|
|
Grid.Row="3"
|
|
Grid.Column="1"
|
|
EditValue="{Binding Path=Betreuungsbeginn, UpdateSourceTrigger=PropertyChanged}" />
|
|
|
|
<Label Grid.Row="4" Grid.Column="0">K0150 Betreuungsende</Label>
|
|
<dxe:DateEdit
|
|
Grid.Row="4"
|
|
Grid.Column="1"
|
|
EditValue="{Binding Path=Betreuungsende, UpdateSourceTrigger=PropertyChanged}"
|
|
ShowClearButton="True" />
|
|
|
|
<Label Grid.Row="5" Grid.Column="0">K0160 Betreuungsdauer in Tagen</Label>
|
|
<dxe:TextEdit
|
|
Grid.Row="5"
|
|
Grid.Column="1"
|
|
Height="23"
|
|
Margin="3"
|
|
dxe:NumericMaskOptions.AlwaysShowDecimalSeparator="False"
|
|
EditValue="{Binding Path=BetreuungsdauerInTagen, UpdateSourceTrigger=PropertyChanged}"
|
|
Mask="#######"
|
|
MaskType="Numeric"
|
|
MaskUseAsDisplayFormat="True" />
|
|
|
|
<Label Grid.Row="6" Grid.Column="0">G7010 Art der Beendigung</Label>
|
|
<ComboBox
|
|
Grid.Row="6"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding ArtDerBeendigungTypes}"
|
|
SelectedValue="{Binding ArtDerBeendigung}" />
|
|
|
|
<Label Grid.Row="7" Grid.Column="0">G1010 Geburtsdatum</Label>
|
|
<dxe:DateEdit
|
|
x:Name="Dateedit"
|
|
Grid.Row="7"
|
|
Grid.Column="1"
|
|
EditValue="{Binding Path=Geburtsdatum, UpdateSourceTrigger=PropertyChanged}" />
|
|
|
|
<Label Grid.Row="8" Grid.Column="0">G1020 Geschlechtsidentität</Label>
|
|
<ComboBox
|
|
Grid.Row="8"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding GeschlechtidentitatTypes}"
|
|
SelectedValue="{Binding Geschlechtidentitat}" />
|
|
|
|
<Label Grid.Row="9" Grid.Column="0">G1030 Staatsangehörigkeit</Label>
|
|
<ComboBox
|
|
Grid.Row="9"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding StaatsangehorigkeitTypes}"
|
|
SelectedValue="{Binding Staatsangehorigkeit}" />
|
|
|
|
<Label Grid.Row="10" Grid.Column="0">G1040 Aufenthaltsstatus</Label>
|
|
<ComboBox
|
|
Grid.Row="10"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding AufenthaltsstatusTypes}"
|
|
SelectedValue="{Binding Aufenthaltsstatus}" />
|
|
|
|
<Label Grid.Row="11" Grid.Column="0">W1060 Höchster erreichter Schulabschluss</Label>
|
|
<ComboBox
|
|
Grid.Row="11"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding HochsterSchulabschlussTypes}"
|
|
SelectedValue="{Binding HochsterSchulabschluss}" />
|
|
|
|
<Label Grid.Row="12" Grid.Column="0">G1070 Familienstand</Label>
|
|
<ComboBox
|
|
Grid.Row="12"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding FamilienstandTypes}"
|
|
SelectedValue="{Binding Familienstand}" />
|
|
|
|
<Label Grid.Row="13" Grid.Column="0">G1080 Haushaltsstruktur</Label>
|
|
<ComboBox
|
|
Grid.Row="13"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding HaushaltsstrukturTypes}"
|
|
SelectedValue="{Binding Haushaltsstruktur}" />
|
|
|
|
<Label
|
|
Grid.Row="14"
|
|
Grid.Column="0"
|
|
Grid.ColumnSpan="2">
|
|
G1090 Eigene minderjährige Kinder außerhalb der Haushaltsstruktur
|
|
</Label>
|
|
<ComboBox
|
|
Grid.Row="15"
|
|
Grid.Column="1"
|
|
Margin="3,-2,3,3"
|
|
ItemsSource="{Binding WohnhilfeBoolDataTypes}"
|
|
SelectedValue="{Binding EigeneMindKinderAuserhalbHaushaltsstruktur}" />
|
|
</Grid>
|
|
</GroupBox>
|
|
|
|
<GroupBox
|
|
x:Name="groupbox_4"
|
|
Grid.Row="1"
|
|
Grid.Column="1"
|
|
Grid.ColumnSpan="1"
|
|
DataContext="{Binding BereichSozialeKontakteVM}"
|
|
Header="Bereich Soziale Kontakte">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="auto" />
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="auto" />
|
|
<ColumnDefinition Width="auto" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
</Grid.RowDefinitions>
|
|
<Label
|
|
Grid.Row="0"
|
|
Grid.Column="0"
|
|
Grid.ColumnSpan="2"
|
|
Style="{StaticResource TitleLabel}">
|
|
zu Beginn
|
|
</Label>
|
|
<Rectangle
|
|
Grid.Row="0"
|
|
Grid.RowSpan="20"
|
|
Grid.Column="2"
|
|
Width="1"
|
|
Margin="5,0,5,0"
|
|
VerticalAlignment="Stretch"
|
|
Fill="Black" />
|
|
<Label
|
|
Grid.Row="0"
|
|
Grid.Column="3"
|
|
Grid.ColumnSpan="2"
|
|
Style="{StaticResource TitleLabel}">
|
|
am Ende
|
|
</Label>
|
|
|
|
<Label Grid.Row="1" Grid.Column="0">W4010 Soziale Kontakte</Label>
|
|
<ComboBox
|
|
Grid.Row="1"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding WohnhilfeBoolDataTypes}"
|
|
SelectedValue="{Binding BeginnSozialeKontakte}" />
|
|
<Label Grid.Row="1" Grid.Column="3">W4020 Soziale Kontakte</Label>
|
|
<ComboBox
|
|
Grid.Row="1"
|
|
Grid.Column="4"
|
|
ItemsSource="{Binding WohnhilfeBoolDataTypes}"
|
|
SelectedValue="{Binding EndeSozialeKontakte}" />
|
|
|
|
<StackPanel
|
|
Grid.Row="2"
|
|
Grid.Column="0"
|
|
Grid.ColumnSpan="2"
|
|
IsEnabled="{Binding CanEditBeginnKontakt}"
|
|
Style="{StaticResource StackpanelDetailsStyle}">
|
|
<CheckBox IsChecked="{Binding BeginnKontaktPartner}">zu Partner/Partnerin</CheckBox>
|
|
<CheckBox IsChecked="{Binding BeginnKontaktMindKinder}">zu eigenen minderjährigen Kindern</CheckBox>
|
|
<CheckBox IsChecked="{Binding BeginnKontaktVolljahrKinderElternVerwandten}">zu volljährigen Kindern, Eltern, Verwandten</CheckBox>
|
|
<CheckBox IsChecked="{Binding BeginnKontaktFreundenBekannten}">zu Freunden/Freundinnen, Bekannten</CheckBox>
|
|
<CheckBox IsChecked="{Binding BeginnKontaktSelbsthilfe}">zu Selbsthilfeorganisationen, Nachbarn, Vereinen, Kirchengemeinden u. ä.</CheckBox>
|
|
<CheckBox IsChecked="{Binding BeginnKontaktSonstige}">sonstige</CheckBox>
|
|
</StackPanel>
|
|
|
|
<StackPanel
|
|
Grid.Row="2"
|
|
Grid.Column="3"
|
|
Grid.ColumnSpan="2"
|
|
IsEnabled="{Binding CanEditEndeKontakt}"
|
|
Style="{StaticResource StackpanelDetailsStyle}">
|
|
<CheckBox IsChecked="{Binding EndeKontaktPartner}">zu Partner/Partnerin</CheckBox>
|
|
<CheckBox IsChecked="{Binding EndeKontaktMindKinder}">zu eigenen minderjährigen Kindern</CheckBox>
|
|
<CheckBox IsChecked="{Binding EndeKontaktVolljahrKinderElternVerwandten}">zu volljährigen Kindern, Eltern, Verwandten</CheckBox>
|
|
<CheckBox IsChecked="{Binding EndeKontaktFreundenBekannten}">zu Freunden/Freundinnen, Bekannten</CheckBox>
|
|
<CheckBox IsChecked="{Binding EndeKontaktSelbsthilfe}">zu Selbsthilfeorganisationen, Nachbarn, Vereinen, Kirchengemeinden u. ä.</CheckBox>
|
|
<CheckBox IsChecked="{Binding EndeKontaktSonstige}">sonstige</CheckBox>
|
|
</StackPanel>
|
|
|
|
<Label Grid.Row="3" Grid.Column="0">W4030 Krankenversicherung</Label>
|
|
<ComboBox
|
|
Grid.Row="3"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding KrankenversicherungTypes}"
|
|
SelectedValue="{Binding BeginnKrankenversicherung}" />
|
|
<Label Grid.Row="3" Grid.Column="3">W4040 Krankenversicherung</Label>
|
|
<ComboBox
|
|
Grid.Row="3"
|
|
Grid.Column="4"
|
|
ItemsSource="{Binding KrankenversicherungTypes}"
|
|
SelectedValue="{Binding EndeKrankenversicherung}" />
|
|
|
|
<Label Grid.Row="4" Grid.Column="0">W4050 Kontakt zu e. Arzt innerhalb der letzten 6 Monate</Label>
|
|
<ComboBox
|
|
Grid.Row="4"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding KontaktArztTypes}"
|
|
SelectedValue="{Binding BeginnKontaktArzt}" />
|
|
<Label Grid.Row="4" Grid.Column="3">W4060 Kontakt zu e. Arzt innerhalb der letzten 6 Monate</Label>
|
|
<ComboBox
|
|
Grid.Row="4"
|
|
Grid.Column="4"
|
|
ItemsSource="{Binding KontaktArztTypes}"
|
|
SelectedValue="{Binding EndeKontaktArzt}" />
|
|
|
|
<Label Grid.Row="5" Grid.Column="0">W4070 Vorlage eines Schwerbegindertenausweises</Label>
|
|
<ComboBox
|
|
Grid.Row="5"
|
|
Grid.Column="1"
|
|
ItemsSource="{Binding WohnhilfeBoolDataTypes}"
|
|
SelectedValue="{Binding VorlageSchwerbehindertenausweises}" />
|
|
|
|
</Grid>
|
|
</GroupBox>
|
|
</Grid>
|
|
</ScrollViewer>
|
|
</UserControl>
|