-
good! The use of free code
不错的!代码使用免费-good! The use of free code
- 2022-01-25 14:47:26下载
- 积分:1
-
blue引擎源码,2006年版的,下载后重新编译,可以使用
blue引擎源码,2006年版的,下载后重新编译,可以使用-blue engine source code
- 2022-06-01 00:12:43下载
- 积分:1
-
AC设备技术原理与发展方向,文中包括目前市场上主流AC设备厂商的产品介绍与特点.同时,简要分析了AC设备未来的发展方向....
AC设备技术原理与发展方向,文中包括目前市场上主流AC设备厂商的产品介绍与特点.同时,简要分析了AC设备未来的发展方向.-Principle of AC equipment and the development direction of technology, the text included in the mainstream of the market on AC equipment vendors and the characteristics of the product introduction. At the same time, a brief analysis of the AC equipment of the future direction of development.
- 2022-09-12 02:40:03下载
- 积分:1
-
多文档多文件类型程序演示
多文档多文件类型程序演示-more documentation procedures more file types demo
- 2022-02-13 02:56:42下载
- 积分:1
-
通过页式虚拟存储管理中缺页中断轮转算法的模拟设计,了解虚拟存储技术的特点,掌握页式存储管理的缺页中断轮转法。 计算缺页次数、缺页率、被淘汰的序列。...
通过页式虚拟存储管理中缺页中断轮转算法的模拟设计,了解虚拟存储技术的特点,掌握页式存储管理的缺页中断轮转法。 计算缺页次数、缺页率、被淘汰的序列。-make a sence of the charasteristic of virtual store skill ,via the simulating design of interrupt cycle arithmetic,and master the missing-page interrupt cycle arithmetic about memory management by pages.calculate missing-page,missing-page-rate,orders eliminited
- 2022-02-14 11:45:29下载
- 积分:1
-
从一个项目启动代码的工作
boot codes from a project being worked on
- 2022-08-07 17:09:09下载
- 积分:1
-
与HID USB通信的程式 API 函数相关
与HID USB通信的程式 API 函数相关-communication with the USB HID API function related programs
- 2022-04-08 08:52:06下载
- 积分:1
-
一个两个电脑之间通信的发消息的程序,类似于简单
一个两个电脑之间通信的发消息的程序,类似于简单-A communication between two computers send an announcement of the program, similar to the simple qq
- 2022-02-07 00:48:09下载
- 积分:1
-
从cclockctrl
来自PJ Naughter的CClockCtrl-from the CClockCtrl
- 2022-05-19 17:54:15下载
- 积分:1
-
VC毛玻璃
#define GDIPVER 0x0110 //定义高版本的GDI+(1.1)
#include
#include
#include
#include
#include
#pragma comment(lib,"GdiPlus.lib")
using namespace Gdiplus;
#include
#pragma comment(lib,"dwmapi.lib")
//Aero效果是否已启用
BOOL IsCompositionEnabled()
{
BOOL bEnabled,bResult;
bResult = (SUCCEEDED(DwmIsCompositionEnabled(&bEnabled)) && bEnabled);
return bResult;
}
//对已分层的窗口启动玻璃效果
HRESULT EnableBlurBehindWindow(HWND hWnd, //窗口句柄
BOOL bEnable = TRUE, //启用或禁用
HRGN hRgn = 0, //模糊窗体中某个区域
BOOL bTransitionOnMaximized = FALSE) //最大化时是否启用
{
DWM_BLURBEHIND blurBehind = { 0 };
blurBehind.dwFlags = DWM_BB_ENABLE | DWM_BB_TRANSITIONONMAXIMIZED;
blurBehind.fEnable = bEnable;
blurBehind.fTransitionOnMaximized = bTransitionOnMaximized;
if (bEnable && hRgn != NULL)
{
blurBehind.dwFlags |= DWM_BB_BLURREGION;
blurBehind.h
- 2023-05-01 15:10:04下载
- 积分:1