-
一个关于显示图片的程序
一个关于显示图片的程序-showed a picture of the procedure
- 2022-08-11 11:40:58下载
- 积分:1
-
命名管道连接A.exe和B.exe
windows命名管道连接A.exe和B.exe,A用来显示,B用来输入字符串并变为大写,C程序功能通过使用管道(pipe)通信的方式,实现 A 和 B 的连接,即让 A 进程的输出作为 B 进程的输入
- 2023-09-09 05:10:02下载
- 积分:1
-
Source for the C++ Languages for the extraction of image contours, detailed proc...
源码为C++语言编写,用于提取图像轮廓,有详细过程,可直接执行。-Source for the C++ Languages for the extraction of image contours, detailed process, can be directly executed.
- 2022-02-20 03:39:38下载
- 积分:1
-
BMThread
BMThread
- 2022-06-14 04:52:23下载
- 积分:1
-
用万年历编数字钟,功能非常强大,已经成功运行
用万年历编数字钟,功能非常强大,已经成功运行-Digital clock with calendar series, very powerful, have successfully run
- 2022-03-15 17:49:43下载
- 积分:1
-
COLORREC 算法的实现,包括实验源程序以及实验报告,大家多多支持啊...
3-COLORREC 算法的实现,包括实验源程序以及实验报告,大家多多支持啊-3-COLORREC algorithm, including the experimental source, as well as experimental reports, everyone can support ah
- 2022-07-24 19:12:19下载
- 积分:1
-
A very good c++ Learning video, was very detailed and thorough! Suitable for c++...
一部很好的c++学习视频,讲得非常详细,透彻!适合c++初学者使用,学习!-A very good c++ Learning video, was very detailed and thorough! Suitable for c++ Beginners use to learn!
- 2023-05-18 18:10:10下载
- 积分: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
-
VC++实现的窗口程序 我们可以看到最基础的建立过程
VC++实现的窗口程序 我们可以看到最基础的建立过程-VC++ to achieve the window procedure we can see the process of establishing the most basic
- 2022-03-05 04:05:05下载
- 积分:1
-
将一个文件,反之亦然在Win32平台
To split a file and vice versa on win32 platform
- 2022-04-21 12:45:02下载
- 积分:1