Is there some built in Card graphics library built into .Net/Windows?
Is there any way to utilize the card graphics used by the various card games that come with Windows? They look really nice and it would be cool if there was some built in functionality for this.

link|improve this question

63% accept rate
2  
Built-in? Can you think of a better way to gain a good reputation in the Corporate world, than to have your framework help people play card games at work? Oh, wait, that would have the opposite effect! – John Saunders May 31 '09 at 5:25
feedback

6 Answers

up vote 6 down vote accepted

Actually there is, sort of. It's not builtin, but it is a free download from Microsoft. There are a pair of .Net project templates, one for C# and one for VB. Both include a set of card face and card back images. The C# one is here:

http://msdn.microsoft.com/en-us/vcsharp/aa336742.aspx

And the VB one is here:

http://visualstudiogallery.msdn.microsoft.com/en-us/a4747c87-2ad2-4004-99bb-2a2f5f043edd

(note: editied to fix C# link --RBarryYoung, May 31, 2009 3pm)

link|improve this answer
The 2 links are identical – Henk Holterman May 31 '09 at 10:32
Hmm? Thought I had double-cheked that... ? – RBarryYoung May 31 '09 at 19:05
OK, I have fixed it. – RBarryYoung May 31 '09 at 19:08
feedback

Bit late to post on this but.. there is this one I am using http://deckofcards.codeplex.com/

link|improve this answer
feedback

I don't think there is anything built in to the framework. :) But, I did find some stuff that might help you over at Codeplex.

link|improve this answer
feedback

I once took the old cards dll file from Microsoft Solitaire and tried getting it to work in .Net. It is possible, but really not worth the hassle. I'm not sure if I'm talking about this one. I don't think I am. I recall ending up with a .rc or .res file at one point and putting far too much time figuring out how to get it working in C#. It was not fun.

There is more than one version of the card dlls depending on OS and whatnot. It's much simpler to just find a free card graphics library and use that.

link|improve this answer
feedback

I believe there is a Visual Studio template project that meets your needs. There certainly was a couple of years ago, but I don't know if it is still maintained.

link|improve this answer
feedback

I'm developing one as a hobby: https://github.com/jamestharpe/James-Games

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.