码迷,mamicode.com
首页 >  
搜索关键字:mfc vc    ( 7653个结果
前端常用的css代码
1、垂直居中对齐 .vc{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); } .vc{ position:absolute; top:50%; left:50%; width:100px; height:1 ...
分类:Web程序   时间:2019-12-07 21:24:35    阅读次数:123
MacOS
MacOS常用命令: 测试对方端口可用:nc -vc -w 2 ip port ...
分类:系统相关   时间:2019-12-06 11:54:48    阅读次数:91
vs2017 curl7.6编译
nmake /f Makefile.vc mode=static VC=15 MACHINE=x86 nmake /f Makefile.vc mode=dll VC=15 MACHINE=x86 curl-7.65.0\winbuild\ nmake vc= 15 是vs2017 ...
分类:Web程序   时间:2019-12-02 19:27:48    阅读次数:101
MFC程序出现uafxcwd.lib(afxmem.obj) : error LNK2005: "void * __cdecl operator new(unsigned int)解决办法
在同一个地方摔倒两次之后,决定记录下来这个东西。 问题 在同一个地方摔倒两次之后,决定记录下来这个东西。 问题 1>uafxcwd.lib(afxmem.obj) : error LNK2005: "void * __cdecl operator new(unsigned int)" (??2@YA ...
分类:编程语言   时间:2019-12-01 00:02:29    阅读次数:116
MFC 画字体DrawText()或TextOut(),CFont字体样式类
新建单个文档的MFC应用程序,类视图——View项的属性——消息,WM_PAINT,创建OnPaint()函数 ...
分类:编程语言   时间:2019-11-30 13:55:47    阅读次数:137
MFC 线程的创建,线程函数在类内、类外
【线程的创建】 AfxBeginThread(类外的线程函数,NULL); AfxBeginThread(类内的线程函数,(LPVOID)this); 【类外线程函数】 UINT 函数名(LPVOID pParam);//头文件中声明,放类外 UINT MyThreadA(LPVOID pParam ...
分类:编程语言   时间:2019-11-28 01:30:29    阅读次数:178
MFC中GDI之CFont(字体)
字体主要是用于修饰文字输出的形状、高度、宽度、粗度、倾斜、删除线等。 BOOL CreateFontIndirect(const LOGFONT* lpLogFont); 根据LOGFONT结构体创建一个字体 BOOL CreateFont( int nHeight, int nWidth, int ...
分类:编程语言   时间:2019-11-27 23:22:00    阅读次数:142
MFC程序执行过程剖析(转)
一 MFC程序执行过程剖析 1)我们知道在WIN32API程序当中,程序的入口为WinMain函数,在这个函数当中我们完成注册窗口类,创建窗口,进入消息循环,最后由操作系统根据发送到程序窗口的消息调用程序的窗口函数。而在MFC程序当中我们不在能找到类似WinMain这样的程序入口,取而代之的是一系列 ...
分类:编程语言   时间:2019-11-26 22:30:38    阅读次数:73
VC图片裁剪源代码
1 #include <atlimage.h> 2 3 4 int main() 5 { 6 7 CString filepathname = "D:\\1.png", filepathname1 = "D:\\11122.png"; 8 int width = 0, height = 0; 9 C ...
分类:其他好文   时间:2019-11-23 23:56:44    阅读次数:129
MFC常用控件类
CListCtrl类的成员函数 主要成员函数 说明 BOOL Create( DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID ); 创建列表控件,并将其窗口句柄保存到m_hWnd中 int InsertColumn( int n ...
分类:编程语言   时间:2019-11-23 20:05:34    阅读次数:125
7653条   上一页 1 ... 26 27 28 29 30 ... 766 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!