我的API大全不全,有几个风格没解释,请教一下大侠哈,下面几个风格有什么作用。
WS_EX_WINDOWEDGE
WS_EX_NOINHERITLAYOUT
WS_EX_LAYOUTRTL
WS_EX_LAYERED
WS_EX_NOACTIVATE
谢谢。

解决方案 »

  1.   

    WS_EX_WINDOWEDGE
    Specifies that a window has a border with a raised edge.WS_EX_NOINHERITLAYOUT
    Windows 2000/XP: A window created with this style does not pass its window layout to its child windows.WS_EX_LAYOUTRTL
    Arabic and Hebrew versions of Windows 98/Me, Windows 2000/XP: Creates a window whose horizontal origin is on the right edge. Increasing horizontal values advance to the left. WS_EX_LAYERED
    Windows 2000/XP: Creates a layered window. Note that this cannot be used for child windows. Also, this cannot be used if the window has a class style of either CS_OWNDC or CS_CLASSDC. WS_EX_NOACTIVATE
    Windows 2000/XP: A top-level window created with this style does not become the foreground window when the user clicks it. The system does not bring this window to the foreground when the user minimizes or closes the foreground window. 
    To activate the window, use the SetActiveWindow or SetForegroundWindow function.
    The window does not appear on the taskbar by default. To force the window to appear on the taskbar, use the WS_EX_APPWINDOW style.更多信息
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/windowing/windows/windowreference/windowfunctions/createwindowex.asp