登录
首页 » Windows开发 » translucent window, small and easy to use, simple!

translucent window, small and easy to use, simple!

于 2022-05-24 发布 文件大小:4.99 kB
0 90
下载积分: 2 下载次数: 1

代码说明:

半透明窗口,短小精悍,使用方便,操作简单! -translucent window, small and easy to use, simple!

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • smart card
    smart card 基于windows端的驱动例程,希望对智能卡驱动给大家提供一些参考-smart card-based driver-side windows routines, in the hope that the smart card driver to provide some reference
    2022-01-28 07:03:05下载
    积分:1
  • WPF C# Windows
    WPF 特效  常用的C#特效,是开发WPF  学习WPF的好的教程  例子
    2023-01-30 19:30:03下载
    积分:1
  • InfoZip是一个功能强大的免费ZIP/UNZIP库,一个在MFC环境中使用的 InfoZip打包类...
    InfoZip是一个功能强大的免费ZIP/UNZIP库,一个在MFC环境中使用的 InfoZip打包类-InfoZip is a powerful and free ZIP/UNZIP database, a InfoZip pack class used in MFC
    2022-05-18 14:25:43下载
    积分:1
  • MFC 文档的多个实例
    1 MainFrame工程是多文档框架,如果没有插件,打开后客户区无任何显示。左侧的树控件来源于网络,不是本文推荐的主要目的。 2 PlugInTest是插件,工程编译后输出为dll,将该dll放到MainFrame输出的exe同目录下即可执行。 3 PlugInTest1是另外的一个插件,工程编译后输出也为dll,使用同2,但是例子和2不同。 做这个工程的目的就是想:如果一个工程足够大,可以将插件分配给不同的小组开发,同时互相又不会干扰。
    2022-08-03 03:58:38下载
    积分:1
  • 软件质量是被大多数程序员挂在嘴上而不是放在心上的东西! 除了完全外行和真正的编程高手外,初读本书,你最先的感受将是惊慌: “哇!我 以前捏造的 C+...
    软件质量是被大多数程序员挂在嘴上而不是放在心上的东西! 除了完全外行和真正的编程高手外,初读本书,你最先的感受将是惊慌: “哇!我 以前捏造的 C++/C 程序怎么会有那么多的毛病?” 别难过,作者只不过比你早几年、多几次惊慌而已。 请花一两个小时认真阅读这本百页经书,你将会获益匪浅,这是前面 N-1 个读者的 建议。-Software Quality is linked to the majority of programmers in mind in the mouth rather than things! In addition to full and genuine programming lay outside experts, read the book early, you will be the first to feel the panic: " wow! I used to fabricate the C++/C process how there were so many problems?" Do not be sad, the author only A few years ago than you, more than just a few panic-stricken. Please take 12 hours to read through 100 of this book, you will be benefited, which is N-1 in front of the recommendations of readers.
    2022-10-08 18:40:02下载
    积分:1
  • 包含绝对磁盘扇区读、写数据,直接使用BIOS服务的键盘接口,直接使用BIOS服务的打印机I/O,读取或设置BIOS时间等等小程序...
    包含绝对磁盘扇区读、写数据,直接使用BIOS服务的键盘接口,直接使用BIOS服务的打印机I/O,读取或设置BIOS时间等等小程序-contains absolutely disk sector read and write data directly using the BIOS keyboard interface, the use of direct services BIOS printer I/O, read or set the BIOS time and other small applications
    2022-03-03 11:47:43下载
    积分:1
  • The source provides a number of MSN contact operation, including import and expo...
    该源码提供对MSN的联系人的一些操作,包括导入导出联系人等-The source provides a number of MSN contact operation, including import and export contact, etc.
    2022-03-11 09:09:57下载
    积分:1
  • mvmmall v3.5.0 网络购物系统 PHP的
    mvmmall v3.5.0 网络购物系统 PHP的-online shopping system php
    2022-11-26 06:00:03下载
    积分:1
  • 迷宫追寻小游戏 C++MFC
    应用背景 这个游戏为玩家控制红色方块,去吃掉棕色,绿色,蓝色的方块,一旦一个方块被吃,便会自动生成另一个相同颜色的方块。直到游戏时间结束为止。 程序函数功能: ondraw函数: 显示游戏界面(用画刷刷成白色),显示地图(黑色),显示食物0,1,2(分别为:棕色,绿色,蓝色),显示玩家(红色) 显示文字,时间,分数。 OnEraseBkgnd函数: 用来更新窗口背景,游戏以位图为窗口背景。 OnGameStart函数: 关联窗口菜单中的开始游戏。包括:     IniGame();(初始化游戏)     m_nGameStatus=1;(游戏状态1,开始)     SetTimer(1,100,NULL);(定时器0.1秒执行一次OnTime)     Invalidate();(转向OnDraw) IniGame函数: 初始化游戏,确定游戏显示位置,确定玩家初始位置,转向IniAim函数 IniAim函数: 初始化目标,这里的三个目标的位置为随机产生。 OnKeyDown函数: 监控设备按下的键,确定玩家移动方向。 ReDisPlay函数: 重画点所在的小方块。减少对Invalidate()的调用,使屏幕不太闪硕。 OmTimer函数: 完成时间的计算。 关键技术游戏中的人工智能: 棕色方块的移动算法为基本寻路算法—物体沿着墙走。 绿色方块的移动算法为基本的逃避算法—物体总会向玩家的反方向移动。 蓝色方块的移动算法为漫游算法—随机产生一个方向值,物体移动的方向不
    2022-03-23 18:25:51下载
    积分:1
  • 此例子是学习C++的好东西,希望你们会喜欢1
    此例子是学习C++的好东西,希望你们会喜欢1-This example is the study and C++ Good things, and I hope you
    2023-08-25 05:05:03下载
    积分:1
  • 696518资源总数
  • 105717会员总数
  • 10今日下载