]>
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 | ||
a7af285d VZ |
17 | \wxheading{Library} |
18 | ||
19 | \helpref{wxCore}{librarieslist} | |
20 | ||
4acaa5e2 JS |
21 | \wxheading{Event table macros} |
22 | ||
23 | To process a window creation event, use this event handler macro to direct input to a member | |
24 | function that takes a wxWindowCreateEvent argument. | |
25 | ||
26 | \twocolwidtha{7cm} | |
27 | \begin{twocollist}\itemsep=0pt | |
28 | \twocolitem{{\bf EVT\_WINDOW\_CREATE(func)}}{Process a wxEVT\_CREATE event.} | |
29 | \end{twocollist}% | |
30 | ||
31 | \wxheading{See also} | |
32 | ||
33 | \helpref{Event handling overview}{eventhandlingoverview},\rtfsp | |
34 | \helpref{wxWindowDestroyEvent}{wxwindowdestroyevent} | |
35 | ||
36 | \latexignore{\rtfignore{\wxheading{Members}}} | |
37 | ||
38 | \membersection{wxWindowCreateEvent::wxWindowCreateEvent}\label{wxwindowcreateeventctor} | |
39 | ||
40 | \func{}{wxWindowCreateEvent}{\param{wxWindow* }{win = NULL}} | |
41 | ||
42 | Constructor. | |
43 |