#800 – Transforms Do Not Affect ActualWidth and ActualHeight

Transforms do not change the values of the original element’s dimensions, as reported by the ActualWidth and ActualHeight properties.  This is true for both LayoutTransforms and RenderTransforms.

    <StackPanel>
        <Button Name="btn1" Content="Apollo" HorizontalAlignment="Center"
                Margin="5"/>

        <Button Name="btn2" Content="Apollo" HorizontalAlignment="Center"
                Margin="5">
            <Button.RenderTransform>
                <ScaleTransform ScaleX="1.5" ScaleY="2.0"/>
            </Button.RenderTransform>
        </Button>

        <Button Name="btn3" Content="Apollo" HorizontalAlignment="Center"
                Margin="5">
            <Button.LayoutTransform>
                <ScaleTransform ScaleX="1.5" ScaleY="2.0"/>
            </Button.LayoutTransform>
        </Button>

        <Button Content="Debug" Click="Button_Click" HorizontalAlignment="Center"
                Margin="10"/>
    </StackPanel>

800-001
Notice that when we inspect the elements in the debugger, they all have identical values for ActualWidth and ActualHeight.
800-002

Advertisement

About Sean
Software developer in the Twin Cities area, passionate about software development and sailing.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: