-
飞思卡尔广告板的触摸屏驱动程序,非常重要!
Freescale ADS demoboard touchpanel device driver,very important!-Freescale ADS demoboard touchpanel devic e driver, very important!
- 2022-06-29 01:51:22下载
- 积分:1
-
采用visual c++.net编写的13个控件编程教学实例,入门必学
采用visual c++.net编写的13个控件编程教学实例,入门必学-The use of visual c++. Net prepared 13 controls programming teaching examples, entry will learn
- 2022-09-15 15:00:03下载
- 积分:1
-
Five
五笔字型字典程序,可查不会写的五笔字-Five-Stroke dictionary procedures, the investigation will not write five words
- 2022-03-21 23:01:31下载
- 积分:1
-
精品 能够把VC7.0
精品 能够把VC7.0-8.0的工程转换到VC6.0的工程, 界面也很漂亮,鼠标一拖,一切搞定。-Products able to VC7.0-8.0 project converted to VC6.0 project, the interface is also very beautiful, one dragging the mouse, all done.
- 2023-04-18 06:20:03下载
- 积分:1
-
讲解C++的PPT(主要是关于函数的讲解)
讲解C++的PPT(主要是关于函数的讲解)-Explain the C++, PPT (mainly about the function to explain)
- 2022-03-25 18:43:40下载
- 积分:1
-
在 magaento 的尺寸表
在 view.phtml 的 magento 版本 1.7 中添加代码
- 2022-06-15 21:51:23下载
- 积分:1
-
这是一个 模拟的代码编辑器,对所有的vc 的 关键字 都有 着色功能...
这是一个 模拟的代码编辑器,对所有的vc 的 关键字 都有 着色功能-This is a simulation of the code editor for all of the vc keywords are coloring function
- 2022-03-05 00:08:04下载
- 积分:1
-
查询CPU信息
MFC源码 关于获取CPU信息,信息有厂商 频率 等一系列信息
里面应用的还有汇编 所以比WMI查询的信息更加准确和有效
- 2022-02-04 07:41:08下载
- 积分:1
-
DDE(动态数据交换)服务端接受VB元程序
DDE(动态数据交换)服务端接受VB元程序-DDE (dynamic data exchange) service-receiving element program VB
- 2023-05-24 19:30:03下载
- 积分: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