Click here to Skip to main content
15,879,326 members
Articles / Desktop Programming / WPF

Solitaire and Spider Solitaire for WPF

Rate me:
Please Sign up or sign in to vote.
4.97/5 (89 votes)
26 Feb 2013CPOL24 min read 171.6K   15.4K   160  
Create Solitaire and Spider Solitaire for WPF, step by step.
<Window x:Class="Solitaire.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:casino="clr-namespace:SolitaireGames.Casino;assembly=SolitaireGames"
        Title="Solitaire" Height="400" Width="650" Icon="/Solitaire;component/Solitaire.ico">
    
    <!-- All we need is a casino view. -->
    <casino:CasinoView x:Name="casinoView" />
    
</Window>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United Kingdom United Kingdom
Follow my blog at www.dwmkerr.com and find out about my charity at www.childrenshomesnepal.org.

Comments and Discussions