学习VC时不太会使用MSDN,我想查CREATESTRUCT的dwExStyle有哪些值我查不到,怎么办?

来源:百度知道 编辑:UC知道 时间:2024/06/30 07:58:31
BOOL CRaChildFrame::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CMDIChildWnd::PreCreateWindow(cs) )
return FALSE;

cs.dwExStyle = ~WS_EX_CLIENTEDGE;

根据以上代码,我现在想查dwExStyle可取哪些值,于是我键入关键字CREATESTRUCT,结果发现那是个结构体,里面确实有dwExStyle属性,并且也有对它的解释,可是它能取哪些值我就查不到了。

根据以上代码,很明显其中能取的一个值是~WS_EX_CLIENTEDGE,可我查不到,就不知道这个值的意思,更不可能知道其他值的意思了。

我以前是学JAVA的,JAVA的JDK要查什么只要键入类名即可,然后会有这个类里的各种方法,查的全些。不知道我出了为什么问题。
!!!!!!!!!!!!!!!!!!!!!!!!!1当然直接键入WS_EX_CLIENTEDGE是能查到的,可是其他值怎么办,我根本就不知道它们的拼写我怎么键入呢,所以像这样即使查到了也没什么用的。

我不怕吃苦,可我不太知道VC怎么去学,好像跟JAVA不一样太多了。

我查到了
WS_EX_ACCEPTFILES Specifies that a window created with this style accepts drag-and-drop files.

WS_EX_APPWINDOW Forces a top-level window onto the taskbar when the window is visible.

WS_EX_CLIENTEDGE Specifies that a window has a 3D look — that is, a border with a sunken edge.

WS_EX_CONTEXTHELP Includes a question mark in the title bar of the window. When the user clicks the question mark, the cursor changes to a question mark with a pointer. If the user then clicks a child window, the child receives a WM_HELP message.

WS_EX_CONTROLPARENT Allows the user to navigate among the child windows of the window by using the TAB key.

WS_EX_DLGMODALFRAME Designates a window with a double border that may (optionally) be created with a title bar when you specify the WS_CAPTION style flag in the dwStyle parameter.

WS_EX_LEFT Gives window generic left-aligned properties. This is the default.

WS_EX