Reputation: 55227
How do I make games in WPF and in C#? Is there a document in PDF format that explains this?
Upvotes: 0
Views: 1587
Reputation: 21
Using WPF to create games is not recommended. You should consider using cocos2d, unity or another similar framework.
If you really have to use WPF, you can see an example here => mini wpf game
Upvotes: 0
Reputation: 16908
Google this name. The title of the book is "3D Game Development with Microsoft Silverlight 3: Beginner's Guide".
Upvotes: 2
Reputation: 9153
There is a 2D (sprite based) port of the XNA framework to Silverlight called SilverSprite The same tutorials that work for XNA work for this library.
Upvotes: 1
Reputation: 564413
You could read the articles posted on Silverlight Games 101, as a starting point.
That being said, it's more just learning how to write games. Using WPF/Silverlight is just one way to render your game - but writing the game is pretty much going to require all of the same skills as using other platforms.
Upvotes: 7