View Issue Details

IDProjectCategoryView StatusLast Update
0002415NoesisGUIUnity3Dpublic2022-09-12 19:45
ReporterDevFear Assigned Tosfernandez  
PrioritynormalSeverityminorReproducibilityalways
Status assignedResolutionopen 
Product Version3.1.5 
Target Version3.2 
Summary0002415: Binding TranslateTransform in Style
DescriptionWhen working with the User Control style. When TranslateTransform is bound to an element property, then in Blend the layout is updated under the change of this property. But in Unity, the binding seems to disappear and TranslateTransform does not work. There are no errors in the logs.
Steps To Reproduce
<Style TargetType="{x:Type local_windows:BaseLocalWindow}">
        <Setter Property="Width" Value="320" />
        <Setter Property="Height" Value="430" />
        <Setter Property="Background" Value="{DynamicResource LowerLevel}" />
        <Setter Property="RenderTransform">
            <Setter.Value>
                <TransformGroup>
                    <TranslateTransform 
                        X="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=local_windows:BaseLocalWindow},
                        Path=OffsetX, Mode=OneWay}"
                        Y="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=local_windows:BaseLocalWindow},
                        Path=OffsetY, Mode=OneWay}" />
                </TransformGroup>
            </Setter.Value>
        </Setter>
  </Style>
TagsNo tags attached.
PlatformAny

Activities

DevFear

DevFear

2022-09-12 12:10

reporter  

Style.PNG (16,348 bytes)   
Style.PNG (16,348 bytes)   

Issue History

Date Modified Username Field Change
2022-09-12 12:10 DevFear New Issue
2022-09-12 12:10 DevFear File Added: Style.PNG
2022-09-12 19:45 sfernandez Assigned To => sfernandez
2022-09-12 19:45 sfernandez Status new => assigned
2022-09-12 19:45 sfernandez Target Version => 3.2
2022-09-12 19:45 sfernandez Steps to Reproduce Updated