September 23rd, 2010

Win7 Mobile Development Tools

If you haven’t installed the Visual Studio Mobile tools for building Win7 applications I would highly recommend you do so now via one of the following links:

The release notes can be found here: Release Notes

Programming Resources: http://charlespetzold.com/phone/index.html

Channel 9 Training: https://channel9.msdn.com/learn/courses/WP7TrainingKit/

Windows Phone Developer Forums: http://social.msdn.microsoft.com/Forums/en-US/windowsphone7series

XNA Creators Club: http://creators.xna.com/en-US/

image

Pre-Requites: Uninstall any non-RTM versions of VS 2010.

Thanks,
–Mike

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); }