MFC 剪切板的使用、线程介绍
一、MFC 剪切板 CListBox *pList = (CListBox*)GetDlgItem(IDC_LIST1); // 获取ListBox控件句柄 CString strTmp; pList->GetText(pList->GetCurSel(), strTmp); // 获取当前控件选中的内容 CString strOutput;...