pub type Window = WindowIsOwned<true>;
Expand description
wxWindow is the base class for all windows and represents any visible object on screen.
Window
represents a C++wxWindow
class instance which your code has ownership,WindowIsOwned
<false>
represents one which don’t own.- Use
Window
’snew()
orBuildable::builder()
(if available) to create an instance of this class. - See C++
wxWindow
class’s documentation for more details.
Aliased Type§
pub struct Window(/* private fields */);