What framework should I use to play in Silverlight and on the client?
I've made a couple of simple games in Silverlight. I am considering making a deeper game for Windows. There will be a limited browser version available in Silverlight. What do you recommend using for the client application (not in the browser or Silverlight)?
If any additional information is required, I will try to add it.
0
a source to share
1 answer
WPF seems like the obvious choice. Since Silverlight is itself a subset of WPF, the games and code you already have will easily be ported to any application you have configured. You can even just wrap your main page in a window and probably launch it.
If you don't want to use WPF for a client application, try to provide reasons (cross platform, etc.)
+4
a source to share