DCSIMG
SilverLight - Ran Wahle's blog

Ran Wahle's blog

Browse by Tags

All Tags » SilverLight (RSS)
Navigation in MVVM
One of the main issues regarding Silverlight was the navigation issue, what commonly refers as “How can we support browser’s back button”. Although Microsoft has standard solution for that is somewhat limited. It’s limitation concerns two main issues: 1. Navigation requires as to use Page Navigation and not user controls 2. It won’t support scenario when pressing a link changes the internal state but will replace the entire page instead. In this post, I’ll demonstrate how we can overcome these issues. ...
Free eBook – WP7 programming by Charles Petzold
Windows Phone 7 programming eBook can be downloaded here From first glance, this book also fits those of you who’s not yet familiar with XAML, Silverlight, WPF etc. You will be after reading it. Enjoy.
MVVM for Silverlight – what is it about?
I recently had the pleasure of having Elad Katz as a consultant for the customer SilverLight I work for on Sela’s behalf. Elad’s job was to lead us migrating a “regular” Silverlight project to MVVM . This post is the first in a series discussing MVVM and it’s application in Silverlight. In here I’ll discuss about what MVVM is all about and what are it’s advantages....
Sending complex typed data from web service to SilverLight client - Part III
On my previous post I discussed the JavaScript mediator part, Here I'll sum this part which is Serialize the object for the SilverLightcomponent and operate method inside it to bind the data....
Sending complex typed data from web service to SilverLight client - Part II
On my previous post I've explained the first steps of creating the service and methods on the server side, and the client corresponding objects in the Silverlight project. Here I'll go further on the JavaScript mediator side. ...
Sending complex typed data from web service to SilverLight client - Part I
In this post I'll explain in how to send complex typed data between web service and SilverLight client code. In order to avoid security issues I'll use JavaScript as mediator between my server code and SilverLight code. ...