Review results tooltips

Build 1501 on 14/Nov/2017  This topic last edited on: 11/Feb/2016, at 13:37

In a listing, GN4 can display a tool tip if you hover with a mouse above an item. The tool tip is defined on the directory style level, thus it can be different for every directory style.

fred4_tooltip_images1_zoom40

Fig 1: Image preview tool tip

fred4_tooltip_images2_zoom40

Fig 2: Image caption tool tip

At the moment, you cannot turn off the automatic tool tips over the content (where provided).

Image tool tips are configured within <Image.ToolTip> statement, within ImagePicker base query in Ted4_CONFIG.XML.

<Image.ToolTip>

  <StackPanel Orientation="Vertical" Width="300" Height="300">

    <TextBlock Height="Auto" HorizontalAlignment="Left" Text="{Binding Path=[img.name]}" />

    <TextBlock Height="Auto" HorizontalAlignment="Left" Text="{Binding Path=[img.folderRef:DescName]}" />

    <Image MaxWidth="280" MaxHeight="280" HorizontalAlignment="Center" VerticalAlignment="Center" Stretch="Uniform" Source="{Binding Path=[img.preview], IsAsync=true, Converter={StaticResource IdToImageConverter}}"/>

  </StackPanel>

</Image.ToolTip>

You can vary the panel size (red color), and image preview size (blue color).