易语言扑克记牌源码
系统结构:DialogFunc,OnInitDialog,OnPaint,OnNcCalcSize,OnLButtonDown,OnLButtonUp,OnMouseMove,子程序_绘图,子程序_初始化,子程序_画界面,子程序_画按钮,子程序_取矩形,子程序_置矩形,子程序_取坐标,子程序_重排序,GetModuleHandle,DialogBoxParam,EndDialog,SetWindowText,LoadIcon,SendMessage,SendMessage_RECT,PostMessage,MessageBox,DefWindowProc,BeginPaint,EndPaint,BitBlt,SetStretchBltMode,StretchBlt,CreateCompatibleDC,CreateCompatibleBitmap,CreateBitmap,SelectObject,SetBkColor,SetTextColor,DeleteDC,DeleteObject,DrawText,SetBkMode,GetStockObject,SetRect,RtlMoveMemory_RECT_1,RtlMoveMemory_RECT_2,SetWindowPos,GetWindowRect,LoadString,RoundRect,GetClientRect,CreatePen,CreateSolidBrush,PtInRect,GetDC,ReleaseDC,GetPixel,
======扑克牌魔术
| |
| |------ _启动子程序
| |
| |------ DialogFunc
| |
| |------ OnInitDialog
| |
| |------ OnPaint
| |
| |------ OnNcCalcSize
| |
| |------ OnLButtonDown
| |
| |------ OnLButtonUp
| |
| |------ OnMouseMove
| |
| |------ 子程序_绘图
| |
| |------ 子程序_初始化
| |
| |------ 子程序_画界面
| |
| |------ 子程序_画按钮
| |
| |------ 子程序_取矩形
| |
| |------ 子程序_置矩形
| |
| |------ 子程序_取坐标
| |
| |------ 子程序_重排序
| |
| |
======调用的Dll
| |
| |---[dll]------ GetModuleHandle
| |
| |---[dll]------ DialogBoxParam
| |
| |---[dll]------ EndDialog
| |
| |---[dll]------ SetWindowText
| |
| |---[dll]------ LoadIcon
| |
| |---[dll]------ SendMessage
| |
| |---[dll]------ SendMessage_RECT
| |
| |---[dll]------ PostMessage
| |
| |---[dll]------ MessageBox
| |
| |---[dll]------ DefWindowProc
| |
| |---[dll]------ BeginPaint
| |
| |---[dll]------ EndPaint
| |
| |---[dll]------ BitBlt
| |
| |---[dll]------ SetStretchBltMode
| |
| |---[dll]------ StretchBlt
| |
| |---[dll]------ CreateCompatibleDC
| |
| |---[dll]------ CreateCompatibleBitmap
| |
| |---[dll]------ CreateBitmap
| |
| |---[dll]------ SelectObject
| |
| |---[dll]------ SetBkColor
| |
| |---[dll]------ SetTextColor
| |
| |---[dll]------ DeleteDC
| |
| |---[dll]------ DeleteObject
| |
| |---[dll]------ DrawText
| |
| |---[dll]------ SetBkMode
| |
| |---[dll]------ GetStockObject
| |
| |---[dll]------ SetRect
| |
| |---[dll]------ RtlMoveMemory_RECT_1
| |
| |---[dll]------ RtlMoveMemory_RECT_2
| |
| |---[dll]------ SetWindowPos
| |
| |---[dll]------ GetWindowRect
| |
| |---[dll]------ LoadString
| |
| |---[dll]------ RoundRect
| |
| |---[dll]------ GetClientRect
| |
| |---[dll]------ CreatePen
| |
| |---[dll]------ CreateSolidBrush
| |
| |---[dll]------ PtInRect
| |
| |---[dll]------ GetDC
| |
| |---[dll]------ ReleaseDC
| |
| |---[dll]------ GetPixel
调用的DLL命令:
.DLL命令 GetModuleHandle, 整数型, , "GetModuleHandleA"
.参数 lpModuleName, 整数型
.DLL命令 DialogBoxParam, 整数型, , "DialogBoxParamA"
.参数 hInstance, 整数型
.参数 lpTemplateName, 整数型
.参数 hWndParent, 整数型
.参数 lpDialogFunc, 子程序指针
.参数 dwInitParam, 整数型
.DLL命令 EndDialog, 整数型
.参数 hWnd, 整数型
.参数 nResult, 整数型
.DLL命令 SetWindowText, 逻辑型, , "SetWindowTextA"
.参数 hWnd, 整数型
.参数 lpString, 文本型
.DLL命令 LoadIcon, 整数型, , "LoadIconA"
.参数 hInstance, 整数型
.参数 lpIconName, 整数型
.DLL命令 SendMessage, 整数型, , "SendMessageA"
.参数 hWnd, 整数型
.参数 wMsg, 整数型
.参数 wParam, 整数型
.参数 lParam, 整数型
.DLL命令 SendMessage_RECT, , , "SendMessageA"
.参数 hWnd, 整数型
.参数 wMsg, 整数型
.参数 wParam, 整数型
.参数 lParam, RECT
.DLL命令 PostMessage, 逻辑型, , "PostMessageA"
.参数 hWnd, 整数型
.参数 wMsg, 整数型
.参数 wParam, 整数型
.参数 lParam, 整数型
.DLL命令 MessageBox, 整数型, , "MessageBoxA"
.参数 hWnd, 整数型
.参数 lpText, 文本型
.参数 lpCaption, 文本型
.参数 wType, 整数型
.DLL命令 DefWindowProc, 整数型, , "DefWindowProcA"
.参数 hwnd, 整数型
.参数 msg, 整数型
.参数 wParam, 整数型
.参数 lParam, 整数型
.DLL命令 BeginPaint, 整数型
.参数 hWnd, 整数型
.参数 lpPaint, PAINTSTRUCT
.DLL命令 EndPaint, 逻辑型
.参数 hWnd, 整数型
.参数 lpPaint, PAINTSTRUCT
.DLL命令 BitBlt, 逻辑型
.参数 hdcDest, 整数型
.参数 nXDest, 整数型
.参数 nYDest, 整数型
.参数 nWidth, 整数型
.参数 nHeight, 整数型
.参数 hdcSrc, 整数型
.参数 nXSrc, 整数型
.参数 nYSrc, 整数型
.参数 dwRop, 整数型
.DLL命令 SetStretchBltMode, 整数型
.参数 hDC, 整数型
.参数 iStretchMode, 整数型
.DLL命令 StretchBlt, 逻辑型
.参数 hdcDest, 整数型
.参数 nXOriginDest, 整数型
.参数 nYOriginDest, 整数型
.参数 nWidthDest, 整数型
.参数 nHeightDest, 整数型
.参数 hdcSrc, 整数型
.参数 nXOriginSrc, 整数型
.参数 nYOriginSrc, 整数型
.参数 nWidthSrc, 整数型
.参数 nHeightSrc, 整数型
.参数 dwRop, 整数型
.DLL命令 CreateCompatibleDC, 整数型
.参数 hDC, 整数型
.DLL命令 CreateCompatibleBitmap, 整数型
.参数 hDC, 整数型
.参数 nWidth, 整数型
.参数 nHeight, 整数型
.DLL命令 CreateBitmap, 整数型
.参数 nWidth, 整数型
.参数 nHeight, 整数型
.参数 cPlanes, 整数型
.参数 cBitsPerPel, 整数型
.参数 lpvBits, 整数型
.DLL命令 SelectObject, 整数型
.参数 hDC, 整数型
.参数 hObject, 整数型
.DLL命令 SetBkColor, 整数型
.参数 hdc, 整数型
.参数 crColor, 整数型
.DLL命令 SetTextColor, 整数型
.参数 hDC, 整数型
.参数 colors, 整数型
.DLL命令 DeleteDC, 逻辑型
.参数 hDC, 整数型
.DLL命令 DeleteObject, 逻辑型
.参数 hObject, 整数型
.DLL命令 DrawText, 整数型, , "DrawTextA"
.参数 hdc, 整数型
.参数 lpStr, 文本型
.参数 nCount, 整数型
.参数 lpRect, RECT
.参数 wFormat, 整数型
.DLL命令 SetBkMode, 整数型
.参数 hDC, 整数型
.参数 nBkMode, 整数型
.DLL命令 GetStockObject, 整数型
.参数 nIndex, 整数型
.DLL命令 SetRect, 整数型
.参数 lprc, RECT
.参数 xLeft, 整数型
.参数 yTop, 整数型
.参数 xRight, 整数型
.参数 yBottom, 整数型
.DLL命令 RtlMoveMemory_RECT_1, 整数型, , "RtlMoveMemory"
.参数 Destination, RECT
.参数 Source, 整数型
.参数 Length, 整数型
.DLL命令 RtlMoveMemory_RECT_2, 整数型, , "RtlMoveMemory"
.参数 Destination, 整数型
.参数 Source, RECT
.参数 Length, 整数型
.DLL命令 SetWindowPos, 整数型
.参数 hWnd, 整数型
.参数 hWndInsertAfter, 整数型
.参数 x, 整数型
.参数 y, 整数型
.参数 cx, 整数型
.参数 cy, 整数型
.参数 wFlags, 整数型
.DLL命令 GetWindowRect, 整数型
.参数 hWnd, 整数型
.参数 RECT, RECT
.DLL命令 LoadString, 整数型, , "LoadStringA"
.参数 hInstance, 整数型
.参数 uID, 整数型
.参数 lpBuffer, 文本型
.参数 nBufferMax, 整数型
.DLL命令 RoundRect, 整数型
.参数 hdc, 整数型
.参数 nLeftRect, 整数型
.参数 nTopRect, 整数型
.参数 nRightRect, 整数型
.参数 nBottomRect, 整数型
.参数 nWidth, 整数型
.参数 nHeight, 整数型
.DLL命令 GetClientRect, 逻辑型
.参数 hWnd, 整数型
.参数 lpRect, RECT
.DLL命令 CreatePen, 整数型
.参数 fnPenStyle, 整数型
.参数 nWidth, 整数型
.参数 crColor, 整数型
.DLL命令 CreateSolidBrush, 整数型
.参数 crColor, 整数型
.DLL命令 PtInRect, 逻辑型
.参数 lprc, RECT
.参数 x, 整数型
.参数 y, 整数型
.DLL命令 GetDC, 整数型
.参数 hWnd, 整数型
.DLL命令 ReleaseDC, 整数型
.参数 hWnd, 整数型
.参数 hDC, 整数型
.DLL命令 GetPixel, 整数型
.参数 hDC, 整数型
.参数 x, 整数型
.参数 y, 整数型
注:本站源码主要来源于网络收集。如有侵犯您的利益,请联系我们,我们将及时删除!
部分源码可能含有危险代码,(如关机、格式化磁盘等),请看清代码在运行。
由此产生的一切后果本站均不负责。源码仅用于学习使用,如需运用到商业场景请咨询原作者。
使用本站源码开发的产品均与本站无任何关系,请大家遵守国家相关法律。