Team:Wellesley Desyne/Tips Tricks
From 2013.igem.org
(Difference between revisions)
Line 82: | Line 82: | ||
<h4>Microsoft Surface Development</h4> | <h4>Microsoft Surface Development</h4> | ||
- | <ul> | + | <ul class="bullet"> |
- | <li> <a href="http://msdn.microsoft.com/en-us/library/ee786837(v=surface.10).aspx"> Microsoft's intro to Surface development </a> </li> | + | <li><a href="http://msdn.microsoft.com/en-us/library/ee786837(v=surface.10).aspx"> |
- | <li> <a href="http://sethsandler.com/multitouch/">Intro to building a multi touch application</a> </li> | + | Microsoft's intro to Surface development</a></li> |
- | <li> Seeing examples of applications is immensely helpful to understand how to implement your application. Microsoft has <a href=http://www.codeplex.com/ | + | <li><a href="http://sethsandler.com/multitouch/">Intro to building a multi touch application</a></li> |
- | "> CodePlex</a>, which allows you to see open source projects and download open source software. </li> | + | <li>Seeing examples of applications is immensely helpful to understand how to implement your application. |
- | <li> Surface Development is built off of WPF (Windows Presentation Foundation), which provides the developer with a standard model to create rich and interesting User Interfaces. Definitely familiarize yourself with WPF if you want to develop for the Surface! <a href="http://msdn.microsoft.com/en-us/library/ms754130.aspx"> Intro to WPF, | + | Microsoft has <a href=http://www.codeplex.com/"> CodePlex</a>, which allows you to see open source projects and download open source software. </li> |
- | <li> The standard model mentioned above is MVVM, which is based on the model-view-controller model. Understanding this model is crucial to understanding how databinding, among other crucial concepts, | + | <li>Surface Development is built off of WPF (Windows Presentation Foundation), which provides the developer with a standard model to create rich and interesting User Interfaces. Definitely familiarize yourself with WPF if you want to develop for the Surface! <a href="http://msdn.microsoft.com/en-us/library/ms754130.aspx"> Intro to WPF,</a> |
+ | <a href="http://www.wpftutorial.net/">Another WPF tutorial</a></li> | ||
+ | <li> The standard model mentioned above is MVVM, which is based on the model-view-controller model. Understanding this model is crucial to understanding how databinding, among other crucial concepts, will work in your application, and how to organize the architecture of your code. <a href="http://blogs.msdn.com/b/erwinvandervalk/archive/2009/08/18/implementing-the-model-view-viewmodel-pattern.aspx">A brief overview of data MVVM can be found here.</a></li> | ||
<li><a href="http://stackoverflow.com/"> Stack Overflow</a> is a great site, both for debugging and for learning more about development. Don’t overlook this resource! In particular, check out <a href="http://stackoverflow.com/questions/129772/how-to-begin-wpf-development">this</a> particular Stack Overflow for tips on starting WPF development.</li> | <li><a href="http://stackoverflow.com/"> Stack Overflow</a> is a great site, both for debugging and for learning more about development. Don’t overlook this resource! In particular, check out <a href="http://stackoverflow.com/questions/129772/how-to-begin-wpf-development">this</a> particular Stack Overflow for tips on starting WPF development.</li> | ||
<li>The <a href="http://msdn.microsoft.com/en-us/vstudio/hh341490.aspx, http://msdn.microsoft.com/en-us/library/vstudio/67ef8sbd.aspx">basics of programming in C#</a> (whether you need to learn or just brush up)</li> | <li>The <a href="http://msdn.microsoft.com/en-us/vstudio/hh341490.aspx, http://msdn.microsoft.com/en-us/library/vstudio/67ef8sbd.aspx">basics of programming in C#</a> (whether you need to learn or just brush up)</li> | ||
<li> In the process of building your application, you’ll most likely need to pull information from the <a href=" http://parts.igem.org/Registry_API?title=Registry_API"> iGEM registry</a> for specific parts. Make use of the Registry API, which allows you to extract information about a particular part efficiently.</li> | <li> In the process of building your application, you’ll most likely need to pull information from the <a href=" http://parts.igem.org/Registry_API?title=Registry_API"> iGEM registry</a> for specific parts. Make use of the Registry API, which allows you to extract information about a particular part efficiently.</li> | ||
- | + | </ul> | |
<hr> | <hr> | ||
<img src="https://static.igem.org/mediawiki/2013/6/62/Whci_sponsor_logos.png"> | <img src="https://static.igem.org/mediawiki/2013/6/62/Whci_sponsor_logos.png"> |
Revision as of 01:18, 10 September 2013
Wellesley HCI iGEM 2013
Tips & Tricks
This section is intended to help future iGEM teams with troubleshooting widely used laboratory protocols. This page addresses different situations/issues we encountered this summer and possible solutions.
Microsoft Surface Development
- Microsoft's intro to Surface development
- Intro to building a multi touch application
- Seeing examples of applications is immensely helpful to understand how to implement your application. Microsoft has CodePlex, which allows you to see open source projects and download open source software.
- Surface Development is built off of WPF (Windows Presentation Foundation), which provides the developer with a standard model to create rich and interesting User Interfaces. Definitely familiarize yourself with WPF if you want to develop for the Surface! Intro to WPF, Another WPF tutorial
- The standard model mentioned above is MVVM, which is based on the model-view-controller model. Understanding this model is crucial to understanding how databinding, among other crucial concepts, will work in your application, and how to organize the architecture of your code. A brief overview of data MVVM can be found here.
- Stack Overflow is a great site, both for debugging and for learning more about development. Don’t overlook this resource! In particular, check out this particular Stack Overflow for tips on starting WPF development.
- The basics of programming in C# (whether you need to learn or just brush up)
- In the process of building your application, you’ll most likely need to pull information from the iGEM registry for specific parts. Make use of the Registry API, which allows you to extract information about a particular part efficiently.