-
基于matlab经过高斯噪声信道的模拟调制系统
基于matlab经过高斯噪声信道的模拟调制系统-Matlab based on Gaussian noise channel after the analog modulation system
- 2022-04-08 16:46:32下载
- 积分:1
-
游戏
一个用C语言编写的一个游戏,非常好玩的一个游戏。相信大家都玩过。-game
- 2022-02-01 06:53:18下载
- 积分:1
-
磁盘克隆
资源描述使用Win32的API读写卷扇区实现磁盘克隆,对于无法使用API打开的卷,使用驱动进行打开。
- 2022-04-27 21:48:19下载
- 积分:1
-
Make icon for yahoo chat. It s great for you.
Make icon for yahoo chat. It s great for you.
- 2022-10-23 18:20:04下载
- 积分:1
-
C++: 函数重载
C++: 函数重载-function overloading
- 2022-01-25 15:27:23下载
- 积分:1
-
PureMVC演示演示演示puremvc puremvc
PureMVC Demo PureMVC Demo-PureMVC Demo PureMVC Demo PureMVC Demo
- 2022-12-01 03:10:03下载
- 积分:1
-
MFC实现示波器的功能,而三的输出波形,可以理解…
MFC实现示波器功能,同时输出三个波形,可以了解MFC的很多基础应用。-MFC realize oscilloscope function, while the three output waveforms, can understand the basis for the application of many of MFC.
- 2022-07-23 20:25:01下载
- 积分:1
-
这是最经典的一部简单的C++book。阅读这本书会让读者对C++由一个大概的认识。...
这是最经典的一部简单的C++book。阅读这本书会让读者对C++由一个大概的认识。-This is the most classic of a simple C++ book. Reading this book would provide readers with C++ by an approximate understanding.
- 2022-09-03 08:35:03下载
- 积分:1
-
ASP动感购物系列拍卖程序
ASP动感购物系列拍卖程序 -Dynamic ASP to ASP dynamic series of the auction process to the auction process series
- 2023-03-02 06:35: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