markdown MessageBox다국어

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown MessageBox다국어相关的知识,希望对你有一定的参考价值。

# MessageBox 다국어

보통의 MessageBox는 OS의 언어를 따라가지만, `MessageBoxEx`를 사용하면 마지막 인자로 언어값을 지정할 수 있다.

## `MessageBox`
```cpp
MessageBox(hwnd, msg, title, MB_OK | MB_ICONEXCLAMATION)
```

## `MessageBoxEx`
```cpp
int WINAPI MessageBoxEx(
  _In_opt_ HWND    hWnd,
  _In_opt_ LPCTSTR lpText,
  _In_opt_ LPCTSTR lpCaption,
  _In_     UINT    uType,
  _In_     WORD    wLanguageId
);
```

### wLanguageId
- 0: 기본값(시스템 언어)
- MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL

# 예제
```cpp
MessageBoxEx(
    NULL, 
    _T("불러올 파일을 선택해주십시오"), 
    _T("불러오기 경고"), 
    MB_OK, 
    MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US)
);
```

以上是关于markdown MessageBox다국어的主要内容,如果未能解决你的问题,请参考以下文章

廣開土太王陵碑(複製本)

廣開土太王陵碑(複製本)

markdown SVN용어및명령어

markdown 언어링크

markdown [MySQL]예약어목록

如何在 Golang 中替换字符串?