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

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

MFC Grid control 2.27 - C/C++ - 清泛网移动版 - 专注IT技能提升

...开源的轻量级的MFC表格控件,使用比较广泛,可快速做出各种定制界面的表格。 Download Grid Control Source and Demo - 311.9 KB Preface This grid is the work of thousands of hours of squinting at pixels, hunting memory leaks, adding new features, fixing new bugs...
https://www.tsingfun.com/it/cp... 

MFC Grid control 2.27 - C/C++ - 清泛网移动版 - 专注IT技能提升

...开源的轻量级的MFC表格控件,使用比较广泛,可快速做出各种定制界面的表格。 Download Grid Control Source and Demo - 311.9 KB Preface This grid is the work of thousands of hours of squinting at pixels, hunting memory leaks, adding new features, fixing new bugs...
https://www.tsingfun.com/it/cp... 

MFC Grid control 2.27 - C/C++ - 清泛网移动版 - 专注IT技能提升

...开源的轻量级的MFC表格控件,使用比较广泛,可快速做出各种定制界面的表格。 Download Grid Control Source and Demo - 311.9 KB Preface This grid is the work of thousands of hours of squinting at pixels, hunting memory leaks, adding new features, fixing new bugs...
https://www.tsingfun.com/it/cp... 

MFC Grid control 2.27 - C/C++ - 清泛网移动版 - 专注IT技能提升

...开源的轻量级的MFC表格控件,使用比较广泛,可快速做出各种定制界面的表格。 Download Grid Control Source and Demo - 311.9 KB Preface This grid is the work of thousands of hours of squinting at pixels, hunting memory leaks, adding new features, fixing new bugs...
https://www.tsingfun.com/it/cp... 

MFC Grid control 2.27 - C/C++ - 清泛网移动版 - 专注IT技能提升

...开源的轻量级的MFC表格控件,使用比较广泛,可快速做出各种定制界面的表格。 Download Grid Control Source and Demo - 311.9 KB Preface This grid is the work of thousands of hours of squinting at pixels, hunting memory leaks, adding new features, fixing new bugs...
https://www.tsingfun.com/it/cpp/1249.html 

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

MFC RadioButton用法详解基础介绍:radiobutton通常都是成组使用的,在一组里面是互斥的。分组的原则是:1、首先将RadioButton控件定好Tab顺序,具体方法:工具栏格...基础介绍: radio button通常都是成组使用的,在一组里面是互斥的...
https://www.tsingfun.com/it/cpp/1453.html 

MFC 中CImageList的用法 - C/C++ - 清泛网 - 专注C/C++及内核技术

MFC 中CImageList的用法图像列表控件(CImageList)是相同大小图像的一个集合,每个集合中均以0为图像的索引序号基数,(可以把这些图标看成是以数组方式存储的)...图像列表控件(CImageList)是相同大小图像的一个集合,每个集...
https://www.tsingfun.com/it/cpp/1374.html 

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

MFC 的SetWindowPos 用法许多软件,特别是占桌面面积不是很大的软件,通常都提供了一个常居顶端的功能(可能有的软件不是这么叫法,但作用是相同的),它的作用是保...许多软件,特别是占桌面面积不是很大的软件,通常都提...
https://www.tsingfun.com/it/cpp/1283.html 

Visul C++中CList用法 - C/C++ - 清泛网 - 专注C/C++及内核技术

Visul C++中CList用法 MFC 的CList,CPtrList,CObList,CStringList ,使用方法相类似。CList是一个双向链表类。MFC 的CList,CPtrList,CObList,CStringList ,使用方法相类似。CList是一个双向链表类。 1、头文件名不可少 Clist类定义在Afxtempl.h 头...
https://bbs.tsingfun.com/thread-877-1-1.html 

MFC 修改对话框图标 - C++ UI - 清泛IT社区,为创新赋能!

在对应对话框的初始化函数OnInitDialog()中,添加以下代码:HICON m_hIcon; m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);//主框架的图标 SetIcon(m_hIcon, TRUE); // Set big icon SetIcon(m_hIcon, FALSE); // Set small icon复制代码