I want to create advanced animation with C# UWP.
Animation that would look like this:
Any idea how to achieve this?
I want to create advanced animation with C# UWP.
Animation that would look like this:
Any idea how to achieve this?
I'm not so sure what is under your blur effect. Looks like it is a wave related animation. So let's make your animation to two parts:
So to understand this in a simple way, you can:
<local:WaveProgressControl x:Name="WaveProgressControl" />
<Rectangle Width="200" Height="200" Stroke="Red" StrokeThickness="3" >
<Rectangle.Fill>
<blureffect:BackdropBlurBrush BlurAmount="10"/>
</Rectangle.Fill>
</Rectangle>
The blureffect above refer to the namespace which include your BackdropBlurBrush. In this way you have a basic sample that looks like what you want. You can modify your project based on this.