-
离散数的的讲义是计算机基础学习的好书,我找了很久才弄到的...
边缘检测例程,包含了常用的图像处理函数,可作为图像编程学习之用-Edge detection routines, including the commonly used image processing functions
- 2022-08-25 06:22:12下载
- 积分:1
-
ListControl可编辑任意项
ListControl 类,可对任意项双击进行编辑,当双击性别项时则显示下拉列表框来供用户选择,双击其他时可直接编辑
- 2022-01-26 06:36:03下载
- 积分:1
-
Minimum cost flow of minimum cost path algorithm SuccessiveShortest
最小费用流的最小费用路算法SuccessiveShortest-Minimum cost flow of minimum cost path algorithm SuccessiveShortest
- 2022-03-21 05:16:12下载
- 积分:1
-
dc++(一个曾经大量使用的p2p)的源代码,dc++,开源的p2p源代码,在bt,emule出现以前,还是有很多人用过,可惜现在已经风头不及当年了。。。...
dc++(一个曾经大量使用的p2p)的源代码,dc++,开源的p2p源代码,在bt,emule出现以前,还是有很多人用过,可惜现在已经风头不及当年了。。。
本文来源于虾客源码 http://www.xkxz.com-dc++ (once a large-scale use of p2p) source code, dc++, open-source p2p source code, in the bt, emule appear before, or have a lot of people used, but is now less of the limelight. . . This article comes from off-source shrimp http://www.xkxz.com
- 2022-08-11 00:57:47下载
- 积分:1
-
C#发送邮件
利用C#MAil库发送邮件信息,发送邮件时需开启邮箱的SMTP服务,才能成功发送,具体代码看下就知道了。
- 2023-07-19 13:50:02下载
- 积分:1
-
该程序能够显示多种形状的旋转对话框!旋转方向可设置
该程序能够显示多种形状的旋转对话框!旋转方向可设置-the program will show a variety of shapes rotating box! Rotation direction is set
- 2022-12-18 19:05:03下载
- 积分:1
-
Microsoft Windows user interface development Manual
Microsoft Windows用户界面开发手册
- 2023-01-21 10:40:04下载
- 积分:1
-
";EVC高级编程及其应用开发";的源代码开发。
《EVC高级编程及其应用开发》源代码合集
开发工具 evc4.0-"EVC Advanced Programming and Application Development" source code development tools evc4.0 Collection
- 2022-02-16 05:48:49下载
- 积分:1
-
8051控制器为基础的代码,其中短信可以控制设备连接到微控制器。
8051 controller based code in which SMS can control devices connected to Micro controller
- 2022-04-20 08:52:08下载
- 积分: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