Implement styling of abnormal values.
- NEU: Auszeichnung pathologischer Werte kann eingestellt werden.
This commit is contained in:
@ -91,7 +91,7 @@
|
||||
Margin="0 5 5 5">
|
||||
<Image Source="/zaaReloaded2;component/Icons/reset.png" Width="24" />
|
||||
</Button>
|
||||
<Button Command="{Binding CloseViewCommand}" ToolTip="Schließen" Margin="5 5 0 5">
|
||||
<Button Command="{Binding CloseViewCommand}" ToolTip="Schließen" IsCancel="True" Margin="5 5 0 5">
|
||||
<Image Source="/zaaReloaded2;component/Icons/exit.png" Width="24" />
|
||||
</Button>
|
||||
</UniformGrid>
|
||||
|
@ -60,6 +60,14 @@
|
||||
SelectedItem="{Binding ReferenceStyle.SelectedItem}"
|
||||
x:Name="ReferenceStyleChooser" HorizontalAlignment="Stretch" />
|
||||
</DockPanel>
|
||||
<DockPanel DockPanel.Dock="Top">
|
||||
<Label DockPanel.Dock="Left" Content="Auszeichnung pathologischer Werte:" Margin="0 0 10 0"
|
||||
Target="{Binding ElementName=AbnormalStyleChooser}" />
|
||||
<StackPanel Orientation="Horizontal" VerticalAlignment="Center">
|
||||
<CheckBox IsChecked="{Binding AbnormalBold}" Content="Fett" />
|
||||
<CheckBox IsChecked="{Binding AbnormalItalics}" Content="Kursiv" Margin="10 0 0 0" />
|
||||
</StackPanel>
|
||||
</DockPanel>
|
||||
<StackPanel DockPanel.Dock="Bottom" Orientation="Horizontal" HorizontalAlignment="Right">
|
||||
<Button Command="{Binding CloseViewCommand}" Content="Schließen" IsDefault="True" IsCancel="True"
|
||||
Margin="0 10 0 0" />
|
||||
|
Reference in New Issue
Block a user