A static bitmap control displays a bitmap. It is meant for display of the small icons in the dialog boxes and is not meant to be a general purpose image display control. In particular, under Windows 9x the size of bitmap is limited to 64*64 pixels and thus you should use your own control if you want to display larger images portably.
Derived from
wxControl
wxWindow
wxEvtHandler
wxObject
Include files
<wx/statbmp.h>
Window styles
There are no special styles for this control.
See also window styles overview.
See also
Remarks
The bitmap to be displayed should have a small number of colours, such as 16, to avoid palette problems.
Members
wxStaticBitmap::wxStaticBitmap
wxStaticBitmap::Create
wxStaticBitmap::GetBitmap
wxStaticBitmap::SetBitmap
wxStaticBitmap()
Default constructor.
wxStaticBitmap(wxWindow* parent, wxWindowID id, const wxBitmap& label, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = "staticBitmap")
Constructor, creating and showing a text control.
Parameters
parent
id
label
pos
size
style
name
See also
bool Create(wxWindow* parent, wxWindowID id, const wxBitmap& label, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = "staticBitmap")
Creation function, for two-step construction. For details see wxStaticBitmap::wxStaticBitmap.
wxBitmap& GetBitmap() const
Returns a reference to the label bitmap.
See also
virtual void SetBitmap(const wxBitmap& label)
Sets the bitmap label.
Parameters
label
See also