码迷,mamicode.com
首页 >  
搜索关键字:uint srcrowpitch    ( 791个结果
win32释放资源
BOOL FreeMyResource(UINT uResouceName,char *szResourceType,char *szFileName) { HRSRC hRsrc = ::FindResource(NULL,MAKEINRESOURCE(uResouceName),szResour ...
分类:Windows程序   时间:2020-06-30 10:24:32    阅读次数:60
封装的grid控件
class CGridCtrl : public CWnd { DECLARE_DYNAMIC(CGridCtrl) public: void Create(CWnd* pParent, DWORD dwStyle, RECT rect, UINT nId); void InsertColumn(L ...
分类:其他好文   时间:2020-06-24 18:13:42    阅读次数:85
WM_size在WM_PAINT之后执行
// DIB.cpp : 定义应用程序的入口点。// #include "stdafx.h"#include "DIB.h"#include"DIBFILE.h" LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); int APIENTRY w ...
分类:其他好文   时间:2020-06-24 10:27:27    阅读次数:62
MFC 完全自定义控件
头文件 #pragma once #include "pch.h" class CGridCtrl : public CWnd { public: void Create(CWnd* pParent, DWORD dwStyle, RECT rect, UINT nId); void InsertC ...
分类:编程语言   时间:2020-06-23 19:01:05    阅读次数:64
51系列单片机与PC端串口调试助手进行串口通信
一、51系列单片机与PC端串口调试助手互相进行串口通信的单片机C语言程序 #include <reg52.h> #define uchar unsigned char #define uint unsigned int unsigned char flag,a,i; uchar code table ...
分类:其他好文   时间:2020-06-22 19:26:48    阅读次数:137
【MFC】解决EDIT控件滚动条滚动后,对话框顶部的文字重叠的问题
问题描述:MFC EDIT控件的滚动条滚动后,对话框顶部的文字重叠。 解决方法:捕获滚动事件,在定时器中重绘文字重叠区域。 主要实现代码: 1 HBRUSH CMyDlg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) 2 { 3 if(pWnd- ...
分类:编程语言   时间:2020-06-17 14:23:37    阅读次数:87
函数GetMessage
功能:从调用线程的消息队列里取得消息并放于指定的结构。 函数原型: BOOL GetMessage(_Out_ LPMSG lpMsg,_In_opt_ HWND hWnd,_In_ UINT wMsgFilterMin,_In_ UINT wMsgFilterMax); lpMsg:指向MSG结构 ...
分类:其他好文   时间:2020-06-10 13:05:12    阅读次数:64
四位数码管显示温度源码程序--STC89C52实时用PCF8591采集温度四位数码管显示
一、创建头文件74hc595.h代码如下: #ifndef __74HC595_H_ #define __74HC595_H_ #include <reg52.h> #define uchar unsigned char #define uint unsigned int sbit DIO = P1 ...
分类:其他好文   时间:2020-06-03 13:55:43    阅读次数:43
win32项目 树形控件TreeView的使用(一)
树形控件的结构体,LVITEMA structure typedef struct tagLVITEMA { UINT mask; int iItem; int iSubItem; UINT state; UINT stateMask; LPSTR pszText; int cchTextMax; ...
分类:Windows程序   时间:2020-06-01 12:00:19    阅读次数:101
基于HAL库的STM32定时器单脉冲控制
这里的单脉冲控制是指在PWM下产生指定个数的脉冲。 先在CubeMx中按照PWM进行配置。 定义一个变量表示脉冲个数。 uint8_t PWMnum = 5; 开启PWM中断。 HAL_TIM_PWM_Start_IT(&htim1, TIM_CHANNEL_1); 定义脉冲完成回调函数。 uint ...
分类:其他好文   时间:2020-05-23 15:03:36    阅读次数:135
791条   上一页 1 2 3 4 5 ... 80 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!