Windows界面杂谈

1.Window的消息处理函数和Dialog的消息处理函数的区别之一

Dialog的消息处理函数通常只处理WM_COMMAND和WM_INITDIALOG消息,并处理了的消息时返回True,没有处理时返回False,而不像普通Window的消息处理函数,没有处理消息时调用DefWindowProc。

2.Modal Dialog和Modaless Dialog的区别之一

操作系统会为Modal Dialog建立消息循环,而Modaless Dialog则和它的父Window公用一个消息循环。

3.Parent Window 和Owner Window的区别之一

CreateWindow时,如果Window Style设置了WS_CHILD,则hWndParent参数所指的Window就是Parent Window,否则就是Owner Window。

你可能感兴趣的:(Windows界面杂谈)