MFC . CView 문자열 출력
CDC* pDC = GetDC();
pDC->TextOutW(100,100,_T("Hello CView")); //인자 x,y. 좌표원점 : CView 의 좌상단
ReleaseDC(pDC); // 필수 해제 처리해야함.
/// 혹은 CClientDC 이용해도 됨.
CClientDC dc(this);
dc.TextOutW(100, 100, _T("Hello CView"));
첫 등록 : 2023.12.03
최종 수정 :
단축 주소 : https://igotit.tistory.com/5040
'VisualStudio.C++.C# > 코딩팁,함수활용,단편' 카테고리의 다른 글
유니티 에서 C++ 로 제작된 DLL 활용 방법 . native plug-ins (0) | 2024.07.10 |
---|---|
CEvent . Lock() . SetEvent() . ResetEvent() (0) | 2022.04.09 |
MFC. CTreeCtrl. Tree Control . 트리 컨트롤 사용법. (0) | 2022.04.04 |
MFC. menu, context menu (0) | 2022.04.04 |
win api. Cryptography API : Next Generation. 암호화. 복호화. (0) | 2022.04.04 |
댓글