Page 1 of 1

[SOLVED] RenderTransform not supported in Beta 12

Posted: Tue Feb 19, 2019 7:45 pm
by fangeles
Good day,

I have created an animation that animates the Y position of control by using RenderTransform.

Please see XAML code below:

Code: Select all

<Storyboard x:Key="Show_Prompt">
        <DoubleAnimation Storyboard.TargetName="TextBlock_Message" Storyboard.TargetProperty="(RenderTransform).Y" To="0" Duration="00:00:0.3">
               <DoubleAnimation.EasingFunction>
                        <CubicEase/>
               </DoubleAnimation.EasingFunction>
         </DoubleAnimation>
</Storyboard>


This was working on on lower beta versions (esp. 10 and 11) but when I tried to update to Beta 12, this is the error:
Error C#/XAML for HTML5: XamlPreprocessor (pass 2) failed: Type not found: "RenderTransform" in namespace: "http://schemas.microsoft.com/winfx/2006/xaml/presentation". Note: the XAML editor sometimes raises errors that are misleading. To see only real non-misleading errors, make sure to close all the XAML editor windows/tabs before compiling.


Thank you.

Fernan

Re: RenderTransform not supported in Beta 12

Posted: Wed Feb 20, 2019 6:23 am
by Andreas
I'm also having issues with a control containing RenderTransform. I wasn't able to pinpoint the actual issue, but once deployed, the website doesn't load anymore. It generates a script error around a DependencyProperty and the method "ContainsKey". Only solution (after 2 days of debugging!) was to downgrade to v10.

Re: RenderTransform not supported in Beta 12

Posted: Wed Feb 20, 2019 7:00 am
by JS-Support @Userware
Sorry for this regression. We are looking into it. A fix will be available asap. Thanks!

Re: RenderTransform not supported in Beta 12

Posted: Sat Mar 02, 2019 2:22 am
by JS-Support @Userware
Hi,

This issue is supposed to be fixed in the v1.2.0 RC1, available at:
http://forums.cshtml5.com/viewforum.php?f=6

Could you please confirm that it is fixed?

Thanks a lot

Re: RenderTransform not supported in Beta 12

Posted: Sun Mar 03, 2019 7:01 pm
by fangeles
Hi,

The Storyboards problem is now fixed and works well on v1.2.0 RC1.


May I follow up the problem regarding the Resource usage, as per stated on this TS entry: http://forums.cshtml5.com/viewtopic.php?f=4&t=7865


Thank you.