Mohit Deshpande
Mohit Deshpande

Reputation: 55227

How to make games with WPF or Silverlight?

How do I make games in WPF and in C#? Is there a document in PDF format that explains this?

Upvotes: 0

Views: 1587

Answers (4)

vlad
vlad

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

user366312
user366312

Reputation: 16908

Google this name. The title of the book is "3D Game Development with Microsoft Silverlight 3: Beginner's Guide".

Upvotes: 2

Michael Brown
Michael Brown

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

Reed Copsey
Reed Copsey

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

Related Questions