用WPF的Path绘制54张扑克牌,不是图像。放大、缩小效果都还不错。
想做扑克游戏的同学拿去用,生成的都是ViewBox,可以很方便加入到程序里面,以及设置各类动画。
扑克牌背面的图案没做,同理可自己画一个。扑克牌上的文字随便设置的,需要修改,在代码
Poker_Helper.cs里面:
string font = "微软雅黑";
string font_king = "Broadway";
微调文字位置修改在每个:TranslateTransform trans_block = new TranslateTransform()
【源码目录】Poker├── Poker
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Example1.xaml
│ ├── Example1.xaml.cs
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── Poker.csproj
│ ├── Poker_Helper.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Poker.exe
│ │ │ ├── Poker.exe.config
│ │ │ └── Poker.pdb
│ │ └── Release
│ └── obj
│ └── Debug
└── Poker.sln
7 directories, 18 files
评论