]>
Commit | Line | Data |
---|---|---|
a660d684 KB |
1 | \section{Window styles}\label{windowstyles} |
2 | ||
3 | Window styles are used to specify alternative behaviour and appearances for windows, when they are | |
4 | created. The symbols are defined in such as way that they can be combined in a `bit-list' using the | |
5 | C++ {\it bitwise-or} operator. For example: | |
6 | ||
7 | \begin{verbatim} | |
bb6290e3 | 8 | wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxTHICK_FRAME |
a660d684 KB |
9 | \end{verbatim} |
10 | ||
11 | For the window styles specific to each window class, please see the documentation | |
12 | for the window. Most windows can use the generic styles listed for \helpref{wxWindow}{wxwindow} in | |
13 | addition to their own styles. | |
14 |