We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i use Uno.Microsoft.Xaml.Behaviors.WinUI.Managed
Storyboard AutoReverse is working in WinUI3 UWP
but not working Uno platform
this is my code
`<Image ~~~ x:Name="img1" Width="1280" Height="720" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Source="ms-appx:///Resources/~~~~~~" Stretch="Fill" Visibility="{Binding IsImageData, RelativeSource={RelativeSource Mode=TemplatedParent}, Converter={StaticResource BooleanToVisibilityConverter}}">
<Interactivity:Interaction.Behaviors> <Core:EventTriggerBehavior EventName="Loaded"> <Media:ControlStoryboardAction> <Media:ControlStoryboardAction.Storyboard> <Storyboard AutoReverse="True" RepeatBehavior="Forever"> <DoubleAnimation Storyboard.TargetName="img1" Storyboard.TargetProperty="Opacity" From="1" To="0" Duration="0:0:2" /> </Storyboard> </Media:ControlStoryboardAction.Storyboard> </Media:ControlStoryboardAction> </Core:EventTriggerBehavior> </Interactivity:Interaction.Behaviors> <!--<Image.Triggers> <EventTrigger RoutedEvent="Image.Loaded"> <BeginStoryboard> <Storyboard AutoReverse="True" RepeatBehavior="Forever"> <DoubleAnimation Storyboard.TargetName="img1" Storyboard.TargetProperty="Opacity" From="1" To="0" Duration="0:0:2" /> </Storyboard> </BeginStoryboard> </EventTrigger> </Image.Triggers>--> </Image>`
The text was updated successfully, but these errors were encountered:
@seo6107 you should test this against the latest Uno version. If it's still an issue, please report on their repository instead: https://github.com/unoplatform/uno
Sorry, something went wrong.
No branches or pull requests
i use Uno.Microsoft.Xaml.Behaviors.WinUI.Managed
Storyboard AutoReverse is working in WinUI3 UWP
but not working Uno platform
this is my code
`<Image ~~~
x:Name="img1"
Width="1280"
Height="720"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Source="ms-appx:///Resources/~~~~~~"
Stretch="Fill"
Visibility="{Binding IsImageData, RelativeSource={RelativeSource Mode=TemplatedParent}, Converter={StaticResource BooleanToVisibilityConverter}}">
The text was updated successfully, but these errors were encountered: