aktueller Stand
This commit is contained in:
@@ -83,6 +83,8 @@
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
</Grid.RowDefinitions>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*" />
|
||||
@@ -124,14 +126,14 @@
|
||||
FontSize="12" />
|
||||
|
||||
<!-- Tickets -->
|
||||
<Label Grid.Row="1"
|
||||
<Label Grid.Row="2"
|
||||
Grid.Column="0"
|
||||
Foreground="{DynamicResource FontColor.DetailsPage.TitleSection.Header}"
|
||||
Content="{Binding Converter={StaticResource LanguageConverter}, ConverterParameter=TicketOverview.Row.Heading.Tickets}"
|
||||
FontWeight="Bold"
|
||||
FontSize="12" />
|
||||
|
||||
<Label Grid.Row="1"
|
||||
<Label Grid.Row="2"
|
||||
Grid.Column="1"
|
||||
Content="{Binding TicketsNew}"
|
||||
Style="{StaticResource RoundedSelectedLabelStyle}"
|
||||
@@ -147,7 +149,7 @@
|
||||
HorizontalAlignment="Center"
|
||||
Cursor="Hand" />
|
||||
|
||||
<Label Grid.Row="1"
|
||||
<Label Grid.Row="2"
|
||||
Grid.Column="2"
|
||||
Content="{Binding TicketsActive}"
|
||||
Style="{StaticResource RoundedSelectedLabelStyle}"
|
||||
@@ -163,7 +165,7 @@
|
||||
HorizontalAlignment="Center"
|
||||
Cursor="Hand" />
|
||||
|
||||
<Label Grid.Row="1"
|
||||
<Label Grid.Row="2"
|
||||
Grid.Column="3"
|
||||
Content="{Binding TicketsCritical}"
|
||||
Style="{StaticResource RoundedSelectedLabelStyle}"
|
||||
@@ -179,7 +181,7 @@
|
||||
HorizontalAlignment="Center"
|
||||
Cursor="Hand" />
|
||||
|
||||
<Label Grid.Row="1"
|
||||
<Label Grid.Row="2"
|
||||
Grid.Column="4"
|
||||
Content="{Binding TicketsNewInfo}"
|
||||
Style="{StaticResource RoundedSelectedLabelStyle}"
|
||||
@@ -196,14 +198,14 @@
|
||||
Cursor="Hand" />
|
||||
|
||||
<!-- Incidents -->
|
||||
<Label Grid.Row="2"
|
||||
<Label Grid.Row="3"
|
||||
Grid.Column="0"
|
||||
Foreground="{DynamicResource FontColor.DetailsPage.TitleSection.Header}"
|
||||
Content="{Binding Converter={StaticResource LanguageConverter}, ConverterParameter=TicketOverview.Row.Heading.Incidents}"
|
||||
FontWeight="Bold"
|
||||
FontSize="12" />
|
||||
|
||||
<Label Grid.Row="2"
|
||||
<Label Grid.Row="3"
|
||||
Grid.Column="1"
|
||||
Content="{Binding IncidentNew}"
|
||||
Style="{StaticResource RoundedSelectedLabelStyle}"
|
||||
@@ -219,7 +221,7 @@
|
||||
HorizontalAlignment="Center"
|
||||
Cursor="Hand" />
|
||||
|
||||
<Label Grid.Row="2"
|
||||
<Label Grid.Row="3"
|
||||
Grid.Column="2"
|
||||
Content="{Binding IncidentActive}"
|
||||
Style="{StaticResource RoundedSelectedLabelStyle}"
|
||||
@@ -235,7 +237,7 @@
|
||||
HorizontalAlignment="Center"
|
||||
Cursor="Hand" />
|
||||
|
||||
<Label Grid.Row="2"
|
||||
<Label Grid.Row="3"
|
||||
Grid.Column="3"
|
||||
Content="{Binding IncidentCritical}"
|
||||
Style="{StaticResource RoundedSelectedLabelStyle}"
|
||||
@@ -251,7 +253,7 @@
|
||||
HorizontalAlignment="Center"
|
||||
Cursor="Hand" />
|
||||
|
||||
<Label Grid.Row="2"
|
||||
<Label Grid.Row="3"
|
||||
Grid.Column="4"
|
||||
Content="{Binding IncidentNewInfo}"
|
||||
Style="{StaticResource RoundedSelectedLabelStyle}"
|
||||
@@ -267,6 +269,45 @@
|
||||
HorizontalAlignment="Center"
|
||||
Cursor="Hand" />
|
||||
|
||||
<!-- Unassigned -->
|
||||
<Label Grid.Row="4"
|
||||
Grid.Column="0"
|
||||
Foreground="{DynamicResource FontColor.DetailsPage.TitleSection.Header}"
|
||||
Content="{Binding Converter={StaticResource LanguageConverter}, ConverterParameter=TicketOverview.Row.Heading.UnassignedTickets}"
|
||||
FontWeight="Bold"
|
||||
FontSize="12" />
|
||||
|
||||
<Label Grid.Row="4"
|
||||
Grid.Column="1"
|
||||
Content="{Binding UnassignedTickets}"
|
||||
Style="{StaticResource RoundedSelectedLabelStyle}"
|
||||
local:TicketOverview.IsSelected="{Binding UnassignedTicketsSelected, Mode=TwoWay}"
|
||||
local:TicketOverview.IsHighlighted="{Binding UnassignedTicketsHighlighted}"
|
||||
ToolTip="{Binding UnassignedTicketsChangeHint}"
|
||||
Tag="UnassignedTicketsSelected"
|
||||
MouseLeftButtonUp="Label_MouseLeftButtonUp"
|
||||
FontWeight="Medium"
|
||||
Foreground="{DynamicResource Color.Orange}"
|
||||
FontSize="12"
|
||||
VerticalAlignment="Center"
|
||||
HorizontalAlignment="Center"
|
||||
Cursor="Hand" />
|
||||
|
||||
<Label Grid.Row="4"
|
||||
Grid.Column="3"
|
||||
Content="{Binding UnassignedTicketsCritical}"
|
||||
Style="{StaticResource RoundedSelectedLabelStyle}"
|
||||
local:TicketOverview.IsSelected="{Binding UnassignedTicketsCriticalSelected, Mode=TwoWay}"
|
||||
local:TicketOverview.IsHighlighted="{Binding UnassignedTicketsCriticalHighlighted}"
|
||||
ToolTip="{Binding UnassignedTicketsCriticalChangeHint}"
|
||||
Tag="UnassignedTicketsCriticalSelected"
|
||||
MouseLeftButtonUp="Label_MouseLeftButtonUp"
|
||||
FontWeight="Medium"
|
||||
Foreground="{DynamicResource Color.Red}"
|
||||
FontSize="12"
|
||||
VerticalAlignment="Center"
|
||||
HorizontalAlignment="Center"
|
||||
Cursor="Hand" />
|
||||
</Grid>
|
||||
</Border>
|
||||
</UserControl>
|
||||
|
||||
Reference in New Issue
Block a user