Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- Spring
- Python
- GIT
- react
- mybatis
- vaadin
- 공정능력
- MSSQL
- IntelliJ
- mapreduce
- Express
- Sqoop
- xPlatform
- plugin
- Kotlin
- Java
- NPM
- 보조정렬
- table
- tomcat
- es6
- SQL
- JavaScript
- window
- SPC
- Eclipse
- SSL
- hadoop
- Android
- R
Archives
- Today
- Total
반응형
목록2019/01/02 (1)
DBILITY
CMainFrame 가운데 정렬
MainFrame.cpp의 PreCreateWindow 함수에서 처리해 봤다. SetWindowPos를 사용할 수 도 있다. CRect rect; CWnd::GetDesktopWindow()->GetWindowRect(&rect); cs.cx = 800; cs.cy = 600; cs.x = (rect.Width() - cs.cx) / 2; cs.y = (rect.Height() - cs.cy) / 2; cs.style &= ~WS_THICKFRAME; // 창크기 조절제거
C
2019. 1. 2. 12:00
반응형