View Issue Details

IDProjectCategoryView StatusLast Update
0001956NoesisGUIUnitypublic2021-04-08 21:17
Reporterkokolihapihvi Assigned Tosfernandez  
PrioritynormalSeverityminor 
Status resolvedResolutionfixed 
Product Version3.0.11 
Target Version3.0.12Fixed in Version3.0.12 
Summary0001956: Viewbox also scales ToolTip
Description

I believe the tooltip scale should stay constant regardless of parent element scale, which seems to be the case in WPF.
I found this related forum post, but couldn't find an issue about this; https://www.noesisengine.com/forums/viewtopic.php?f=3&t=1831&p=10375&hilit=tooltip+scale#p10375

Steps To Reproduce

Xaml:

<Grid
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

<Grid Width="500" Height="500">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="10"/>
<ColumnDefinition Width="10
"/>
<ColumnDefinition Width="90"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="10
"/>
<RowDefinition Height="70*"/>
</Grid.RowDefinitions>
<Viewbox Grid.Column="0">
<TextBlock Text="A" Background="Green">
<TextBlock.ToolTip>
<TextBlock FontSize="20">TOOLTIP</TextBlock>
</TextBlock.ToolTip>
</TextBlock>
</Viewbox>
<Viewbox Grid.Column="1" Margin="16">
<TextBlock Text="B" Background="Red">
<TextBlock.ToolTip>
<TextBlock FontSize="20">TOOLTIP</TextBlock>
</TextBlock.ToolTip>
</TextBlock>
</Viewbox>
</Grid>
</Grid>

PlatformAny

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2021-03-31 20:06 kokolihapihvi New Issue
2021-03-31 20:06 kokolihapihvi Tag Attached: WPF
2021-03-31 20:06 kokolihapihvi Tag Attached: xaml
2021-03-31 20:17 sfernandez Assigned To => sfernandez
2021-03-31 20:17 sfernandez Status new => assigned
2021-03-31 20:17 sfernandez Target Version => 3.0.12
2021-04-08 21:17 sfernandez Status assigned => resolved
2021-04-08 21:17 sfernandez Resolution open => fixed
2021-04-08 21:17 sfernandez Fixed in Version => 3.0.12
2025-10-10 13:29 jsantos Category Unity3D => Unity