MFC
李伯爵的指间沙
这个作者很懒,什么都没留下…
展开
-
C++ and MFC SerialPort X64 platform
you can see on the Internet is based onthe MFC serial port of X86 platform.Then,I will introduce the method of the X86 platform on the MFC to achieve the serialport demo.(1) download the SerialPort source code,I also post code on my blog,you can refer ..原创 2020-05-21 22:48:48 · 1258 阅读 · 0 评论 -
MFC -窗体自适应大小
void CserialcommunicationDlg::OnSize(UINT nType, int cx, int cy){ CDialogEx::OnSize(nType, cx, cy); // TODO: 在此处添加消息处理程序代码 if (nType == SIZE_RESTORED || nType == SIZE_MAXIMIZED) { Resize();...原创 2019-11-26 09:06:17 · 2029 阅读 · 1 评论 -
MFC - 最小化或者最大化图片不显示的解决办法
void CserialcommunicationDlg::OnPaint(){ if (IsIconic()) { CPaintDC dc(this); // 用于绘制的设备上下文 SendMessage(WM_ICONERASEBKGND, reinterpret_cast<WPARAM>(dc.GetSafeHdc()), 0); // 使图标在工作区矩形...原创 2019-11-26 09:03:10 · 871 阅读 · 0 评论 -
MFC-按键颜色字体大小的改变
//////////////////////////设置字体大小和字形//////////////////////// //2019011-21- LLL增加字体大小代码 CFont * f; f = new CFont; f->CreateFont(25, // nHeight 0, // nWidth 0, // nEscapement 0, // nOrie...原创 2019-11-21 17:23:04 · 432 阅读 · 0 评论