X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0a42e3b6ac17519f6fffe8a81cd53f29b72e4ec9..5e6ce06a0d6c2a21ede24343fb9541f4101af582:/docs/latex/wx/txrc.tex diff --git a/docs/latex/wx/txrc.tex b/docs/latex/wx/txrc.tex index 01558bba48..3a11b955d7 100644 --- a/docs/latex/wx/txrc.tex +++ b/docs/latex/wx/txrc.tex @@ -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} + + 400, 300 + +\end{verbatim} + +The code can then access the sizer item by using {\tt XRCSIZERITEM} and +{\tt XRCID} together. + +\begin{verbatim} +wxSizerItem* item = XRCSIZERITEM(*this, "area"); +\end{verbatim} \subsection{Adding new resource handlers}\label{newresourcehandlers}