May 6th, 2008

Silverlight Resources

Looking for an good list of Silverlight Resources? I have created a list of Silverlight Blogs, Tutorials and more that you can find here:

http://silverlight.net/blogs/msnow/archive/2008/05/05/silverlight-resources.aspx

I will be keeping this list up-to-date so send me any links you feel are missing!

Thank you.

Mike Snow
SDET Lead 
Visual Studio Web Tools

Category
ASP.NET

0 comments

Discussion are closed.

'; block.insertAdjacentElement('beforebegin', codeheader); let button = codeheader.querySelector('.copy-button'); button.addEventListener("click", async () => { let blockToCopy = block; await copyCode(blockToCopy, button); }); } }); async function copyCode(blockToCopy, button) { let code = blockToCopy.querySelector("code"); let text = ''; if (code) { text = code.innerText; } else { text = blockToCopy.innerText; } try { await navigator.clipboard.writeText(text); } catch (err) { console.error('Failed to copy:', err); } button.innerText = "Copied"; setTimeout(() => { button.innerHTML = '' + svgCodeIcon + ' Copy'; }, 1400); }