Re: wxEuphoria wxBitmapButton Question

new topic     » goto parent     » topic index » view thread      » older message » newer message

Mannequin wrote:
> 
> Hi all!
> 
> I'm new to Euphoria, but working to plunge right in!
> 
> I have a question about wxBitmapButtons in wxEuphoria. Could anyone post a
> simple working
> example of a wxBitmapButton for me? I'm cannot get it to work, so I'm thinking
> I might
> have the wrong idea about it.

Here's a really simple example:
-- Created using wxIDE
include wxEuphoria.e
include wxButton.e
include wxGraphics.e

global constant
bitmap = create( wxBitmap, {BM_FROM_FILE, "tiles.bmp", wxBITMAP_TYPE_BMP}),
new_wxFrame_3 = create( wxFrame, {0, -1, "new_wxFrame_3" }),
new_wxPanel_1 = create( wxPanel, {new_wxFrame_3, -1, 0, 0, 299, 199 }),
new_wxBitmapButton_1 = create( wxBitmapButton, {new_wxPanel_1, -1, bitmap, 39,
34, 197, 79 })

wxMain( new_wxFrame_3 )

 
Matt Lewis

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu