WS_窗口風格常量


WS_窗口風格常量
WS_BODER    窗口具有細線邊框
WS_CAPTION   窗口具有標題欄(包含 WS_BODER)
WS_CHILD    創建一個子窗口(此風格不能與 WS_POPUP 一起使用 )
WS_CHILDWINDOW 與 WS_CHILD 相同
WS_CLIPHILDREN 當在父窗口中畫圖時,繞開子窗口占有的區域。
WS_CLIPSBLINGS 裁剪相互關聯的子窗口,使一個特殊 的子窗口收到 WS_PAINT 消息時,僅對自身窗口起作用。此式樣僅適合具有 WS_CHILD 風格的窗口。
WS_DISABLED 創建一個開始時禁止的窗口
WS_DLGFRAME 創建一個具有某種式樣的邊框的窗口,該式樣一般與對話框一起使用,具有該式樣的窗口不能有一個標題欄。
WS_GROUP 指定一組控制中的第一個控制,具有該式樣控制的下一個控制終止當前控制組,並且開始下一個控制組。
WS_HSCROLL 窗口具有水平滾動條
WS_VSCROOL 窗口具有垂直滾動條
WS_MAXIMIZE 窗口初始時最大化
WS_MINIMIZE 窗口初始時最小化
WS_MINIMIZEBOX 窗口具有最小化按鈕
WS_MAXIMIZEBOX 窗口具有最大化按鈕
WS_OVERLAPPED 重疊 式窗口,該式樣窗口 帶有一個標題欄和邊框
WS_OVERLAPPEDWINDOW 具有WS_OVERLAPPED,WS_CAPTION,WS_SYSMENU,WS_THICKFRAM, WS_MINIMIZEBOX,WS_MAXIMIZEBOX 式樣的重疊式窗口
WS_POPUP 彈出式窗口,不能與 WS_CHILD 一起使用
WS_POPUPWINDOW 具有 WS_BODER,WS_POPUP,WS_SYSMENU 式樣的彈出式窗口。為了使 SYSTEM 菜單(也叫 CONTROL 菜單可見),必須將 WS_CAPTION與 WS_POPUPWINDOW 式樣組合使用。
WS_SYSMENU 具有 SYSTEM 菜單欄,還必須指定 WS_CAPTION 式樣
WS_THICKFRAME 具有可調邊框
WS_VISIBLE 窗口初始時可見

擴展口風格 常量

WS_EX_ACCEPTFILES 窗口可接收拖放文件
WS_EX_DLGMODALFRAME 具有雙線邊框
WS_EX_NOPARENTNOTIFY 當一個子窗口創建或取消時,不向其父窗口發送WM_PARENTNOTIFY 消息
WS_EX_TOPMOST 窗口放在所有非頂層窗口之上,即使窗口不工作。


支持 3D 外觀的擴展風格
WS_EX_CLIENTEDGE 為應用程序的主工作空間創建一個下陷的客戶區,例如一個字處理程序的文本窗口
WS_EX_STATICEDGE 為只用於輸出的窗口創建下陷的客戶區。

 

 

FROM MSDN:

  • WS_BORDER    Creates a window that has a border.

  • WS_CAPTION    Creates a window that has a title bar (implies the WS_BORDER style). Cannot be used with the WS_DLGFRAME style.

  • WS_CHILD    Creates a child window. Cannot be used with the WS_POPUP style.

  • WS_CHILDWINDOW    Same as the WS_CHILD style.

  • WS_CLIPCHILDREN    Excludes the area occupied by child windows when you draw within the parent window. Used when you create the parent window.

  • WS_CLIPSIBLINGS    Clips child windows relative to each other; that is, when a particular child window receives a paint message, the WS_CLIPSIBLINGS style clips all other overlapped child windows out of the region of the child window to be updated. (If WS_CLIPSIBLINGS is not given and child windows overlap, when you draw within the client area of a child window, it is possible to draw within the client area of a neighboring child window.) For use with the WS_CHILD style only.

  • WS_DISABLED    Creates a window that is initially disabled.

  • WS_DLGFRAME    Creates a window with a double border but no title.

  • WS_GROUP    Specifies the first control of a group of controls in which the user can move from one control to the next with the arrow keys. All controls defined with the WS_GROUP style FALSE after the first control belong to the same group. The next control with the WS_GROUP style starts the next group (that is, one group ends where the next begins).

  • WS_HSCROLL    Creates a window that has a horizontal scroll bar.

  • WS_ICONIC    Creates a window that is initially minimized. Same as the WS_MINIMIZE style.

  • WS_MAXIMIZE    Creates a window of maximum size.

  • WS_MAXIMIZEBOX    Creates a window that has a Maximize button.

  • WS_MINIMIZE    Creates a window that is initially minimized. For use with the WS_OVERLAPPED style only.

  • WS_MINIMIZEBOX    Creates a window that has a Minimize button.

  • WS_OVERLAPPED    Creates an overlapped window. An overlapped window usually has a caption and a border.

  • WS_OVERLAPPEDWINDOW    Creates an overlapped window with the WS_OVERLAPPED , WS_CAPTION , WS_SYSMENU , WS_THICKFRAME , WS_MINIMIZEBOX , and WS_MAXIMIZEBOX styles.

  • WS_POPUP    Creates a pop-up window. Cannot be used with the WS_CHILD style.

  • WS_POPUPWINDOW    Creates a pop-up window with the WS_BORDER , WS_POPUP , and WS_SYSMENU styles. The WS_CAPTION style must be combined with the WS_POPUPWINDOW style to make the Control menu visible.

  • WS_SIZEBOX    Creates a window that has a sizing border. Same as the WS_THICKFRAME style.

  • WS_SYSMENU    Creates a window that has a Control-menu box in its title bar. Used only for windows with title bars.

  • WS_TABSTOP    Specifies one of any number of controls through which the user can move by using the TAB key. The TAB key moves the user to the next control specified by the WS_TABSTOP style.

  • WS_THICKFRAME    Creates a window with a thick frame that can be used to size the window.

  • WS_TILED    Creates an overlapped window. An overlapped window has a title bar and a border. Same as the WS_OVERLAPPED style.

  • WS_TILEDWINDOW    Creates an overlapped window with the WS_OVERLAPPED , WS_CAPTION , WS_SYSMENU , WS_THICKFRAME , WS_MINIMIZEBOX , and WS_MAXIMIZEBOX styles. Same as the WS_OVERLAPPEDWINDOW style.

  • WS_VISIBLE    Creates a window that is initially visible.

  • WS_VSCROLL    Creates a window that has a vertical scroll bar.

 
4646
5463


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM