1 / 16

Tampa Bay Windows Developers User Group File…New…Metro Jan 18 th 2012

Tampa Bay Windows Developers User Group File…New…Metro Jan 18 th 2012. Brian Kassay http ://briankassay.com @briankassay brian@briankassay.com. Agenda. Preview the auto generated templates in Visual Studio 11 Express for Windows Developer Preview XAML / C# HTML5 / JavaScript

trisha
Download Presentation

Tampa Bay Windows Developers User Group File…New…Metro Jan 18 th 2012

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Tampa Bay Windows Developers User GroupFile…New…MetroJan 18th 2012 Brian Kassay http://briankassay.com @briankassay brian@briankassay.com

  2. Agenda • Preview the auto generated templates in Visual Studio 11 Express for Windows Developer Preview • XAML / C# • HTML5 / JavaScript • Modify the templates to do something practical • Tips with developing in the new platform

  3. C# Templates

  4. XAML Template Summary • Application (blank) • Empty, minimal • Grid • Preloaded default data in grid • Split • Preloaded default data in split view

  5. XAML Grid Application Demo

  6. Synchronous vs. asynchronous • var data = DownloadData(...); • ProcessData(data); STOP DownloadData ProcessData varfuture = DownloadDataAsync(...); future.ContinueWith(data => ProcessData(data)); DownloadDataAsync ProcessData

  7. AsyncInterop keywords • Async • Makes your method asynchronous • Await • Makes the rest of your method a callback • Task • Lets you coordinate activities

  8. Grid Application /Async Demo

  9. Split Application Demo

  10. HTML5 Templates

  11. HTML5 Template Summary • Blank • Empty, minimal • Fixed Layout • Basic layout added to the blank template • Grid • Preloaded default data in grid • Navigation • Similar layout to Grid but with no sample data • Split • Preloaded default data in split view

  12. HTML5 Grid Application Demo

  13. Resources • Start building on Windows 8 • http://www.buildwindows.com/ • Learn to build Metro style apps • http://msdn.microsoft.com/en-us/library/windows/apps • Async Homepage: • http://msdn.microsoft.com/en-us/vstudio/async • Windows 8 Snap Feature for low res displays • http://www.nirmaltv.com/2011/09/20/enable-windows-8-snap-feature/ • Slides • http://briankassay.com

More Related