Files
BeWoPlaner/BeWo/Scheduling/View/OccurrenceParticipationConfirmationView.xaml
Lyndon Jetten 23b8757ff5 FaC: Neues Scheduling-Modul hinzugefügt, aber noch lange nicht fertig.
ownChat: Neues TimeStamp-Objekt wird unterstützt und der Chat funktioniert wieder.
2024-06-05 14:45:33 +02:00

24 lines
1.5 KiB
XML

<dx:DXWindow x:Class="BeWo.Scheduling.View.OccurrenceParticipationConfirmationView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
mc:Ignorable="d"
Loaded="OccurrenceParticipationConfirmationView_OnLoaded"
WindowStartupLocation="CenterOwner" ResizeMode="NoResize"
dx:ThemeManager.ThemeName="Office2010Black"
Height="Auto" Width="500" SizeToContent="Height">
<Grid>
<StackPanel Orientation="Vertical">
<TextBlock Text="{Binding InfoText}" TextWrapping="Wrap" Margin="5" />
<CheckBox Content="Für alle Termine einer Serie übernehmen" IsThreeState="False" Margin="5" Visibility="{Binding CheckBoxVisibility}"
IsChecked="{Binding ApplyForAllOccurrences, UpdateSourceTrigger=PropertyChanged}" />
<StackPanel Orientation="Horizontal" Margin="0,5,0,0" HorizontalAlignment="Right">
<Button HorizontalAlignment="Right" Content="{Binding OkButtonText}" Margin="5" Click="YesButton_OnClick" />
<Button HorizontalAlignment="Right" Content="{Binding NoButtonText}" Margin="5" Click="NoButton_OnClick" />
</StackPanel>
</StackPanel>
</Grid>
</dx:DXWindow>