c# - How I can make transparent blurred border? -


how can put border blurred , transparent in uwp project can see in picture?

like in ios

this sample should you.

key thing render ui under panel image , blur it.

render ui element image:

rendertargetbitmap rtb = new rendertargetbitmap();  await rendertargetbitmap.renderasync(uielement);  image.source = rtb;  

make image blured using uwp community toolkit:

await image.blur(duration: 10, delay: 0, value: 10).startasync(); 

or, yes, @mzetko answered use new anniversary sdk


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -