]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/txrc.tex
wxBORDER_THEME now means 'use an appropriate themed border' on all plaforms
[wxWidgets.git] / docs / latex / wx / txrc.tex
index 01558bba4810740e81abf566e78631a58d9b5d4d..e77cfd21f5318db2b406f182deae2ae8e647812d 100644 (file)
@@ -506,7 +506,22 @@ END_EVENT_TABLE()
 
 \end{verbatim}
 
+It is also possible to access the wxSizerItem of a sizer that is part of
+a resource.  This can be done using {\tt XRCSIZERITEM} as shown.  The
+resource file can have something like this for a sizer item.
 
+\begin{verbatim}
+<object class="spacer" name="area">
+  <size>400, 300</size>
+</object>
+\end{verbatim}
+
+The code can then access the sizer item by using {\tt XRCSIZERITEM} and
+{\tt XRCID} together.
+
+\begin{verbatim}
+wxSizerItem* item = XRCSIZERITEM(*this, XRCID("area"));
+\end{verbatim}
 
 \subsection{Adding new resource handlers}\label{newresourcehandlers}