(X) Hide this Watch the recordings of our recent webinars: Switch or no switch: Can I build my business apps in LightSwitch and Switching on the Cloud for Silverlight by Gill Cleeren
Our next webinar is on May 11th: Getting started with the Silverlight 5 Beta. Join it!
Skip Navigation LinksHome / Search

Search

 
Results Per Page

Found 5 results for Tim Greenfield.
Date between: <not defined> and <not defined>
Search in: News , Articles , Tips , Shows , Showcase , Books

Order by Publish Date   Ascending Title   Rating  

  • 0 comments  /  posted by  Silverlight Show  on  Apr 18, 2011 (2 weeks ago)
    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on Twitter

    Tim Greenfield demoed a little app he built that allows you to play LIVE stereoscopic 3D using 2 webcams.

    Source: Programmer Payback

    At MIX 2011 I had the fantastic opportunity to present on many of the cool new features recently added to the MMP Player Framework (formerly the Silverlight Media Framework). One of these new features is the ability to play stereoscopic 3D videos (think Avatar).


  • 0 comments  /  posted by  Silverlight Show  on  Dec 12, 2010 (4 months ago)
    Tags: Windows Phone 7 , PuzzleTouch , Tim Greenfield

    The next WP7 developer who we introduce to you is Tim Greenfield who will reveal some secrets behind the creation of his PuzzleTouch application. Tim also gives some advices to those of you who consider to start developing for Windows Phone 7.

    Q1. Tim - please introduce yourself briefly (experience, interests, key projects, etc) and tell us more about the application you created - what are the key functionalities, major differences from other similar applications on the market, why do you think people would want to install this app on their WP7?

  • 0 comments  /  posted by  Silverlight Show  on  Aug 23, 2010 (8 months ago)
    By using Microsoft Pivot and the Pauthor open source libraries, Tim Greenfield has created a tool that lets you produce a Pivot of all your photos on your hard disk.

    Source: Programmer Payback

    As an amateur photographer, I have always kept my eyes open for new tools to help me search, sort, filter, and view my own photos. Microsoft Pivot (a cool new technology that lets you easily view, search, and filter data using deep zoom) seemed like a natural and obvious fit for the task.

    Therefore, using Microsoft Pivot and the Pauthor open source libraries, I created a tool that helps users create a pivot collection from the photos on their hard drive and supports filtering by all the nifty meta data embedded in those files such as shutter speed, aperture, film speed, and focal length.

  • 0 comments  /  posted by  Silverlight Show  on  Apr 07, 2010 (more than a year ago)
    Tim Greenfield talks about XPath in Silverlight 4 RC and presents a tool that he produced - XPathPad.

    Silverlight 4 introduces XPath support including XPathNavigator and LINQ to XML extension methods for evaluating XPath expressions on your XElement objects! For those that aren’t familiar with XPath, it is essentially a big string that contains specially formatted text that is interpreted at runtime to describe a pattern for finding nodes in an XML document. You can use it to find nodes with specific conditions much like how regular expressions finds smaller strings in a bigger string. 

  • 1 comments  /  posted by  Silverlight Show  on  Mar 30, 2010 (more than a year ago)
    In this blog post, Tim Greenfield explains how to build an observable XmlReader.

    For those of you who don’t know or can’t remember, SAX (Simple API for XML) is a technology for reading Xml in an event based way. Instead of loading your Xml into a great big DOM and looping thru it or plucking out nodes via XPath or LINQ to XML, SAX allows the Xml parser to notify your application as new nodes were encountered. SAX (like XmlReader, is a forward-only Xml reader) and efficient for parsing large and streaming chunks of Xml.