(X) Hide this Upcoming webinar by Brian Noyes: Querying and Updating Data From Silverlight Clients with WCF RIA Services. February 2nd, 10 am PST (see your local time)
Full webinar info | Register | Read WCF RIA Services Article series by Brian Noyes
Become a member to receive all webinar news by email, or follow all webinar news on Twitter | Facebook | LinkedIn
Skip Navigation LinksHome / Search

Search

 
Results Per Page

Found 7 results for Joost van Schaik.
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  Jan 24, 2011 (1 day ago)

    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on TwitterJoost van Schaik demonstrates how to put an about page in your WP7 app ussing MVVMLight.

    Source: .NET by Example

    I spotted a very nice about page on the Slim Tanken App by Manfred Dalmeijer, fellow member of the Dutch Windows Phone 7 developer community. He was kind enough to send me a sample solution from which I happily copied a lot of XAML. I decided to not only include it in my own Map Mania App, but to build a kind of standard page and MVVMLight model around it – so that everyone who wanted to quickly add a functional About page with support info, review and buy links for his or her App could easily do so. So here goes, the Standard About Page


  • 0 comments  /  posted by  Silverlight Show  on  Jan 14, 2011 (1 week ago)

    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on TwitterJoost van Schaik has made some universal way of tombstoning for MVVM Light.

    Source: .NET by Example

    I’ve been down this road before but I thought it wise to revisit this subject, since I see a lot of people in the Windows Phone 7 developer community still struggling with the concept of tombstoming. In my previous attempt to make some universal way of tombstoning ViewModels on Windows Phone 7 I used DataContractSerializer, which is a nice idea but does not work very well with MVVMLight since the ViewModelBase is not serializable. And sometimes you have to go trough a lot of hooplah if stuff you use in your code does not turn out to be serializable after all.There is a better way, I think. So here it is: universal tombstoning for MVVMLight, take two.
  • 0 comments  /  posted by  Silverlight Show  on  Nov 16, 2010 (2 months ago)

    Joost van Schaik has short blog post on DTDsSilverlight and Windows Phone 7.

    Source: .NET by Example

    My current Windows Phone 7 project requires the possibility of reading configurations from various servers. For the GIS lovers among my audience: I am trying to read a GetCapabilities document from a WMS server. I was reading this one and this one, and the first one succeeded, while the second one failed. It became even more odd when I tried to write unit tests running from the full framework – then both links processed flawlessly. The error was “NotSupportedException” on XDocument.Load().

    Follow us on twitter We tweet all news and content updates - follow us on Twitter! 

  • 0 comments  /  posted by  Silverlight Show  on  Oct 22, 2010 (3 months ago)

    Joost van Schaik is here with another Windows Phone 7 application using Open Source map servers on the web in Bing Maps.

    Source: .NET by Example

    My previous post, which caused a bit of a stirrup and got me over 1000 page hits on that one page alone in less than 46 hours, led to the question if I could provide an example of how to use data from Open Source map servers on the web in Bing Maps. This is more useful than Google Maps, since Google’s TOS most likely does not allow accessing their data they way I showed, and an application doing so violates section 3.1 of the Windows Phone 7 Application Certification Requirements, which clearly state that allowed content includes “Copyrighted content that is used with permission”, which I obviously do not have and most likely never will. Unless Google wants to code me a Windows Phone 7 app for them.

    Follow us on twitterWe tweet all news and content updates - follow us on Twitter! 

  • 0 comments  /  posted by  Silverlight Show  on  Oct 20, 2010 (3 months ago)

    Take a look at this post of Joost van Schaik in which he demonstrates how to use the BingMaps Control in Windows Phone 7 to create a Google Maps application.

    Source: .NET by Example

    As I write this, we are less than 25 hours away from the moment the first Windows Phone 7 devices are released into the wild – in the Netherlands, that is. The marketplace is filling up nicely already. Some things are pretty obviously missing. And you wonder why, because they would be quite easy to make.

    I hereby dare Google to publish a Google Maps application in the Windows Phone 7 Marketplace. Why? Because if they don’t do it, someone else probably will, and probably pretty fast, too.

    Follow us on twitterWe tweet all news and content updates - follow us on Twitter! 

  • 0 comments  /  posted by  Silverlight Show  on  Oct 08, 2010 (3 months ago)

    Joost van Schaik is using MVVMLight to open a file from the local system in Silverlight.

    Source: .NET by Example

    The very first Silverlight application I had to make professionally (i.e. not as a hobby/research project at home) required the possibility to open a file from (local) disk. Of course I wanted to use Laurent Bugnion’s MVVMLight and the strict separation between logic that I talked and blogged about so much – ‘practice what thou preach’, eh?

  • 0 comments  /  posted by  Svetla Stoycheva  on  Aug 10, 2010 (5 months ago)

    Joost van Schaik posted a solution he developed for multi touch pan/zoom behaviour for Multi Scale Images on Windows Phone 7.

    Some may have read my foray into using Windows Phone 7 to view maps, utilizing a Multi Scale Image (msi), MVVM Light and some extension properties. This application works quite well, but being mainly a study in applied architecture, the user experience leaves much to be desired. Studying Laurent Bugnion’s Multi Touch Behaviour got me on the right track. Although Laurent’s behaviour is very good, it basically works by translating, resizing (and optionally rotating) the control(s) inside the FrameworkElement is is attached to. For various reasons this is not an ideal solution for a map viewer.

    So I set out to make my own behaviour, the first one I ever made by the way, and it turned out to remarkably easy – less than 90 lines of code, including whitespace and comments.