基本信息
源码名称:WPF 绘制扑克牌(非图片)
源码大小:1.85M
文件格式:.rar
开发语言:C#
更新时间:2020-12-26
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
用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