摘要: 第一种 导出方式 第二种 导出方式 在项目上添加一个def文件 DLL使用 第一种 隐式链接 第二种 显示链接 阅读全文
posted @ 2019-05-13 21:57 李道臣 阅读(2084) 评论(0) 推荐(0) 编辑
摘要: void CMyPE::OnClickedButton1() { // TODO: 在此添加控件通知处理程序代码 // 打开一个文件夹选择对话框 CFileDialog dlg(TRUE); dlg.DoModal(); // 将文件路径显示到编辑框 CString path = dlg.GetFolderPath(); CString path1 = dlg.GetFileN... 阅读全文
posted @ 2019-05-13 17:19 李道臣 阅读(386) 评论(0) 推荐(0) 编辑
摘要: List Control // 需要用到列表里面的内容的时候,会用到下面的代码 if (m_list.GetSelectedCount() == 1) { POSITION pos_s; pos_s = m_list.GetFirstSelectedItemPosition(); int item 阅读全文
posted @ 2019-05-13 17:15 李道臣 阅读(392) 评论(0) 推荐(0) 编辑