• 大小: 0.21M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 游戏  实例  C#  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Runtime.InteropServices; 
using System.Windows.Forms;

namespace AppMain
{
public partial class MainForm : Form
{

#region 声明扑克牌API

// cards.dll文件位于System32目录下

[DllImport(“cards.dll“)]
public static extern bool cdtInit(ref int width ref int height);

[DllImport(“cards.dll“)]
public static extern void cdtTerm();

[DllImport(“cards.dll“)]
public static extern bool cdtDraw(IntPtr hdc int x int y int card int mode long color);

private IntPtr m_HDC = new IntPtr();

#endregion

#region 定义变量

/// 
/// 四个数
/// 

private int[] m_FourNumber = new int[4];

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       5551  2010-01-21 10:55  TwentyFourPoint\AppMain\AppMain.csproj

     文件        512  2010-01-21 10:55  TwentyFourPoint\AppMain\AppMain.csproj.user

     文件       9728  2010-01-21 11:08  TwentyFourPoint\AppMain\bin\Debug\Arithmetic.dll

     文件      24064  2010-01-21 11:08  TwentyFourPoint\AppMain\bin\Debug\Arithmetic.pdb

     文件     210944  2010-01-21 11:08  TwentyFourPoint\AppMain\bin\Debug\TwentyFourPoint.exe

     文件      30208  2010-01-21 11:08  TwentyFourPoint\AppMain\bin\Debug\TwentyFourPoint.pdb

     文件      14328  2010-01-21 11:25  TwentyFourPoint\AppMain\bin\Debug\TwentyFourPoint.vshost.exe

     文件        490  2007-07-21 01:33  TwentyFourPoint\AppMain\bin\Debug\TwentyFourPoint.vshost.exe.manifest

     文件       3567  2010-01-21 08:23  TwentyFourPoint\AppMain\expressionCalculator.csproj

     文件       3294  2010-01-21 10:58  TwentyFourPoint\AppMain\MainForm.cs

     文件       3630  2010-01-21 10:58  TwentyFourPoint\AppMain\MainForm.Designer.cs

     文件       5814  2010-01-21 10:58  TwentyFourPoint\AppMain\MainForm.resx

     文件        856  2010-01-21 11:25  TwentyFourPoint\AppMain\obj\Debug\AppMain.csproj.FileListAbsolute.txt

     文件        949  2010-01-21 11:08  TwentyFourPoint\AppMain\obj\Debug\AppMain.csproj.GenerateResource.Cache

     文件        180  2010-01-21 11:08  TwentyFourPoint\AppMain\obj\Debug\AppMain.MainForm.resources

     文件      98118  2010-01-21 11:08  TwentyFourPoint\AppMain\obj\Debug\AppMain.Properties.Resources.resources

     文件        180  2010-01-21 11:08  TwentyFourPoint\AppMain\obj\Debug\AppMain.SetupForm.resources

     文件       3185  2010-01-21 11:08  TwentyFourPoint\AppMain\obj\Debug\ResolveAssemblyReference.cache

     文件       4608  2010-01-21 10:55  TwentyFourPoint\AppMain\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll

     文件     210944  2010-01-21 11:08  TwentyFourPoint\AppMain\obj\Debug\TwentyFourPoint.exe

     文件      30208  2010-01-21 11:08  TwentyFourPoint\AppMain\obj\Debug\TwentyFourPoint.pdb

     文件        477  2010-01-21 08:32  TwentyFourPoint\AppMain\Program.cs

     文件       1458  2010-01-21 09:15  TwentyFourPoint\AppMain\Properties\AssemblyInfo.cs

     文件       3082  2010-01-21 10:55  TwentyFourPoint\AppMain\Properties\Resources.Designer.cs

     文件       6191  2010-01-21 10:55  TwentyFourPoint\AppMain\Properties\Resources.resx

     文件       1088  2010-01-21 08:31  TwentyFourPoint\AppMain\Properties\Settings.Designer.cs

     文件        249  2010-01-21 08:29  TwentyFourPoint\AppMain\Properties\Settings.settings

     文件      97566  2010-01-21 10:55  TwentyFourPoint\AppMain\Resources\App.ico

     文件       1188  2010-01-21 10:12  TwentyFourPoint\AppMain\SetupForm.cs

     文件       9875  2010-01-21 09:35  TwentyFourPoint\AppMain\SetupForm.Designer.cs

............此处省略35个文件信息

评论

共有 条评论