Files
BeWoPlaner/BeWo/Scheduler/View/SchedulerStartControl.xaml
2016-06-27 01:45:38 +02:00

36 lines
3.1 KiB
XML

<UserControl x:Class="BeWo.Scheduler.View.SchedulerStartControl"
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"
mc:Ignorable="d" >
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="130" />
<ColumnDefinition Width="130" />
<ColumnDefinition Width="130" />
<ColumnDefinition Width="130" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Button Grid.Column="0" Margin="0,3,3,3" Height="64" Style="{DynamicResource ColoredButton}" Background="{DynamicResource ResourceContentBrush}" ToolTip="Ressourcenplanung anzeigen" Click="ShowResourcesButton_Click" Width="64">
<Image Source="/BeWoPlaner;component/Ressources/Icons/ObjectsDisabled.png"/>
</Button>
<TextBlock Grid.Row="1" Grid.Column="0" VerticalAlignment="Center" Margin="3" Text="Ressourcenverwaltung" FontSize="12" Foreground="{DynamicResource BigInfoTextBrush}" FontFamily="Microsoft Sans Serif" HorizontalAlignment="Center" />
<Button Grid.Row="0" Grid.Column="1" Margin="3" Height="64" Width="64" Style="{DynamicResource ColoredButton}" Background="{DynamicResource EmployeeContentBrush}" ToolTip="Abwesenheiten der Mitarbeiter anzeigen" Click="ShowEmployeeAbsenceTimes_Click">
<Image Source="/BeWoPlaner;component/Ressources/Icons/UserBusinessMaleDisabled.png"/>
</Button>
<TextBlock Grid.Row="1" Grid.Column="1" VerticalAlignment="Center" Margin="3" Text="Personalplanung" FontSize="12" Foreground="{DynamicResource BigInfoTextBrush}" FontFamily="Microsoft Sans Serif" HorizontalAlignment="Center" />
<Button Grid.Row="0" Grid.Column="2" Margin="3" Height="64" Width="64" Style="{DynamicResource ColoredButton}" Background="{DynamicResource CustomerContentBrush}" ToolTip="Terminplanung für Klienten anzeigen" Click="ShowClientAppointmentButton_Click">
<Image Source="/BeWoPlaner;component/Ressources/Icons/UserHomeMaleDisabled.png"/>
</Button>
<TextBlock Grid.Row="1" Grid.Column="2" VerticalAlignment="Center" Margin="3" Text="Terminplanung Klienten" FontSize="12" Foreground="{DynamicResource BigInfoTextBrush}" FontFamily="Microsoft Sans Serif" HorizontalAlignment="Center" />
<Button Grid.Row="0" Grid.Column="3" Width="64" Height="64" Click="ShowCommonCalendarButton_Click" Style="{DynamicResource ColoredButton}" Background="#3c4561">
<Image Source="/BeWoPlaner;component/Ressources/Icons/CalendarDisabled.png" />
</Button>
<TextBlock Grid.Row="1" Grid.Column="3" Text="Kalender" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="3" FontSize="12" Foreground="{DynamicResource BigInfoTextBrush}" FontFamily="Microsoft Sans Serif" />
</Grid>
</UserControl>