大约有 2,000 项符合查询结果(耗时:0.0107秒) [XML]

https://www.tsingfun.com/it/cp... 

CGridCellNumeric - A numeric cell class for the MFC Grid - C/C++ - 清泛网 - 专注C/C++及内核技术

CGridCellNumeric - A numeric cell class for the MFC GridCGridCellNumeric-A-numeric-cell-class-for-the-MFC-GridA locale aware, editable, self validating numeric cell class for the MFC Grid. Configurable for integers, floating...A locale aware, editable, self validating numeric cell class for the MFC ...
https://www.tsingfun.com/it/cp... 

CGridCellNumeric - A numeric cell class for the MFC Grid - C/C++ - 清...

CGridCellNumeric - A numeric cell class for the MFC GridCGridCellNumeric-A-numeric-cell-class-for-the-MFC-GridA locale aware, editable, self validating numeric cell class for the MFC Grid. Configurable for integers, floating...A locale aware, editable, self validating numeric cell class for the MFC ...
https://www.tsingfun.com/it/tech/749.html 

从Code Review 谈如何做技术 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...黑了,还有一些直接就是冷讽和骂人了,微博中我就直接删除了)。这些批评我的阿里工程师/架构师的观点总结一下如下:(顺便说一下,阿里内还是有很多团队坚持做Code Review的) 1)到业务团队体会一下,倒逼工期的项目有...
https://www.tsingfun.com/it/cpp/1568.html 

MFC RadioButton不互斥?可能由于不同分组导致 - C/C++ - 清泛网 - 专注C/C++及内核技术

MFC RadioButton不互斥?可能由于不同分组导致现象如下:MFC添加的单选默认是互斥的,如果出现上述情况,可能是它们处于不同的分组或Tab顺序不连续。分组:每组第一个RadioButton的Group...现象如下: MFC添加的单选默认是互斥的...
https://www.tsingfun.com/it/cpp/1578.html 

MFC中MDI消息处理流程 - C/C++ - 清泛网 - 专注C/C++及内核技术

MFC中MDI消息处理流程在MFC中,消息是通过一个向上递交的方式进处理,例如一个WM_COMMAND消息的处理流程可能为:1) MDI主窗口(CMDIFrameWnd)收到命令消息WM_C...在MFC中,消息是通过一个向上递交的方式进处理,例如一个WM_COMMAND消...
https://bbs.tsingfun.com/thread-13-1-1.html 

MFC CString与std::string互转 - VC/MFC - 清泛IT论坛,有思想、有深度

CString cstr; std::string stdstr; 非Unicode: stdstr.assign( (LPSTR) (LPCTSTR) cstr);   或者   stdstr = std::string( (LPSTR) (LPCTSTR) cstr); cstr = CString( stdstr.data() ); Unicode: stdstr.assign( CT2A ( (LPCTSTR) cstr ));   或者   stdstr...
https://bbs.tsingfun.com/thread-23-1-1.html 

MFC窗口如何设置TopMost置顶 - VC/MFC - 清泛IT论坛,有思想、有深度

本帖最后由 zqp2013 于 2015-1-13 20:03 编辑 方法一:网上常见的 pDlg->SetWindowPos(&CWnd::wndTopMost, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);  或 pDlg->SetWindowPos(pDlg->GetStyle() & WS_EX_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE); 方法二:...
https://www.tsingfun.com/it/cpp/1420.html 

MFC CSplitterWnd的用法详解 - C/C++ - 清泛网 - 专注C/C++及内核技术

MFC CSplitterWnd的用法详解用MFC开发一个软件界面中需要拆分多个试图窗口时,使用CSplitterWnd类CSplitterWnd类主要用在创建一个拆分试图窗口。通常嵌入在框架窗口中(...用MFC开发一个软件界面中需要拆分多个试图窗口时,使用CSplitterWnd...
https://www.tsingfun.com/it/cpp/1575.html 

mfc对话框字体不正常? - C/C++ - 清泛网 - 专注C/C++及内核技术

mfc对话框字体不正常?为什么mfc对话框字体显示不正常,新建一个默认工程字体没有问题。原因:由于VS2005以上版本的对话框资源代码拷到了VS 05中,FONT 9, "宋... 为什么mfc对话框字体显示不正常,新建一个默认工程字体没有问...
https://www.tsingfun.com/it/cpp/2189.html 

mfc 显示子窗口任务栏图标 - C/C++ - 清泛网 - 专注C/C++及内核技术

mfc 显示子窗口任务栏图标用MFC创建的基于对话框的应用程序,启动时父对话框在任务栏上会自动创建图标,但弹出的子对话框却没有,这样隐藏了父对话框以后,要查看程...用MFC创建的基于对话框的应用程序,启动时父对话框...