]>
Commit | Line | Data |
---|---|---|
4acaa5e2 JS |
1 | \section{\class{wxWindowCreateEvent}}\label{wxwindowcreateevent} |
2 | ||
3 | This event is sent just after the actual window associated with a wxWindow object | |
4 | has been created. Since it is derived from wxCommandEvent, the event propagates up | |
5 | the window hierarchy. | |
6 | ||
7 | \wxheading{Derived from} | |
8 | ||
9 | \helpref{wxCommandEvent}{wxevent}\\ | |
10 | \helpref{wxEvent}{wxevent}\\ | |
11 | \helpref{wxObject}{wxobject} | |
12 | ||
13 | \wxheading{Include files} | |
14 | ||
15 | <wx/event.h> | |
16 | ||
17 | \wxheading{Event table macros} | |
18 | ||
19 | To process a window creation event, use this event handler macro to direct input to a member | |
20 | function that takes a wxWindowCreateEvent argument. | |
21 | ||
22 | \twocolwidtha{7cm} | |
23 | \begin{twocollist}\itemsep=0pt | |
24 | \twocolitem{{\bf EVT\_WINDOW\_CREATE(func)}}{Process a wxEVT\_CREATE event.} | |
25 | \end{twocollist}% | |
26 | ||
27 | \wxheading{See also} | |
28 | ||
29 | \helpref{Event handling overview}{eventhandlingoverview},\rtfsp | |
30 | \helpref{wxWindowDestroyEvent}{wxwindowdestroyevent} | |
31 | ||
32 | \latexignore{\rtfignore{\wxheading{Members}}} | |
33 | ||
34 | \membersection{wxWindowCreateEvent::wxWindowCreateEvent}\label{wxwindowcreateeventctor} | |
35 | ||
36 | \func{}{wxWindowCreateEvent}{\param{wxWindow* }{win = NULL}} | |
37 | ||
38 | Constructor. | |
39 |