Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.WPF/MainWindow.axaml')
-rw-r--r--UVtools.WPF/MainWindow.axaml27
1 files changed, 20 insertions, 7 deletions
diff --git a/UVtools.WPF/MainWindow.axaml b/UVtools.WPF/MainWindow.axaml
index fc3559e..e825817 100644
--- a/UVtools.WPF/MainWindow.axaml
+++ b/UVtools.WPF/MainWindow.axaml
@@ -1868,25 +1868,38 @@
IsChecked="{Binding ShowLayerImageIssues}"
ToolTip.Tip="Highlight Issues on current layer. Valid only if Issues are calculated."
VerticalAlignment="Stretch"
- Margin="1,0,0,0"
- >
- <StackPanel Orientation="Horizontal">
+ Margin="1,0,0,0">
+ <Button.ContextMenu>
+ <ContextMenu PlacementMode="Bottom">
+ <CheckBox
+ ToolTip.Tip="Show crosshairs for selected issues on the current layer"
+ IsChecked="{Binding ShowLayerImageCrosshairs}">
+ <StackPanel Orientation="Horizontal">
+ <Image Source="/Assets/Icons/crosshairs-16x16.png"/>
+ <TextBlock Margin="5,0,5,0" Text="Crosshairs"/>
+ </StackPanel>
+ </CheckBox>
+
+ </ContextMenu>
+ </Button.ContextMenu>
+ <StackPanel Orientation="Horizontal">
<Image Source="/Assets/Icons/warning-16x16.png"/>
- <TextBlock Margin="5,0,5,0" Text="Issues"/>
+ <TextBlock Margin="5,0,5,0" Text="Issues ⮟"/>
</StackPanel>
</ToggleButton>
+ <!--
<ToggleButton
IsChecked="{Binding ShowLayerImageCrosshairs}"
- ToolTip.Tip="Show crosshairs for selected issues on the current layer."
+ ToolTip.Tip="Show crosshairs for selected issues on the current layer"
VerticalAlignment="Stretch"
- Margin="1,0,0,0"
- >
+ Margin="1,0,0,0">
<StackPanel Orientation="Horizontal">
<Image Source="/Assets/Icons/crosshairs-16x16.png"/>
<TextBlock Margin="5,0,5,0" Text="Crosshairs"/>
</StackPanel>
</ToggleButton>
+ !-->
<Button Name="LayerPreviewOutlineButton"
ToolTip.Tip="Click to access the various outlines."