1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
<HTML>
<head><title>Window styles</title></head>
<BODY BGCOLOR=#FFFFFF>
<A NAME="windowstyles"></A><CENTER>
<A HREF="wx.htm"><img align=center src="contents.gif" BORDER=0 ALT="Contents"></A> <A HREF="wx278.htm#overviews"><img align=center src="up.gif" BORDER=0 ALT="Up"></A> <A HREF="wx304.htm#runtimeclassoverview"><img align=center src="back.gif" BORDER=0 ALT="Previous"></A> <A HREF="wx306.htm#wxtaboverview"><img align=center src="forward.gif" BORDER=0 ALT="Next"></A> </CENTER><HR>
<H2>Window styles</H2>
<P>
Window styles are used to specify alternative behaviour and appearances for windows, when they are
created. The symbols are defined in such as way that they can be combined in a 'bit-list' using the
C++ <I>bitwise-or</I> operator. For example:<P>
<PRE>
wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxTHICK_FRAME
</PRE>
For the window styles specific to each window class, please see the documentation
for the window. Most windows can use the generic styles listed for <A HREF="wx260.htm#wxwindow">wxWindow</A> in
addition to their own styles.<P>
</BODY></HTML>
|