본문 바로가기
[C# MFC 비교] MessageBox 출력 종류 차이, 사용법 예제와 인자 [C# MFC 비교] MessageBox 출력 종류 차이, 사용법 예제와 인자 C# MessageBox를 사용하는 방법은 아래와 같습니다. 1234567UINT n = MessageBox(body, caption, flags); DialogResult n = MessageBox.Show(body);DialogResult n = MessageBox.Show(body, caption);DialogResult n = MessageBox.Show(body, caption, buttons);DialogResult n = MessageBox.Show(body, caption, buttons, icon);DialogResult n = MessageBox.Show(body, caption, buttons, icon, .. 2018. 8. 7.
C# MFC 차이 비교 - part2 (소스 차이 비교) C# MFC 차이 비교 - part2 (소스 차이 비교) C# MFC 차이 비교 A1. MFC - abs 12345int n = ...;int a = abs(n); int n = -2147483648; // 아래처럼 변환UINT u = abs(n);cs C# - Math.Abs 123456int n = ...;int a = Math.Abs(n); int n = -2147483648; // 아래처럼 변환uint u = Math.Abs(n);uint u = unchecked(n - C# MFC 비교 테이블 [링크] C# MFC 차이 비교 - part2 (소스 차이 비교) 2017. 2. 27.
C# MFC 차이 비교 - part 1 (table) (연동에 필요한 정보) C# MFC 차이 비교 - part 1 (table) (연동에 필요한 정보) C# MFC 차이 - A MFC C# abs Math.Abs .AddString(...) .Items.Add(...) AfxMessageBox MessageBox.Show atoi Parse C# MFC 차이 - B MFC C# BOOL 또는 bool Boolean 또는 bool bool Boolean 또는 bool bool BS_PUSHLIKE BYTE byte C# MFC 차이 - C MFC C# CBitmap Bitmap(actually, a GDI+ bitmap) CBrush Brush CDC 또는 CClientDC Graphics ceil Math.Ceiling CenterWindow(CWnd) .StartPositio.. 2017. 2. 27.