1

如何让它工作?我试图创建带有图标和标签的按钮。像这些按钮:

像这个例子(图片)

image1 = wx.Image("button_icon.png", wx.BITMAP_TYPE_ANY).ConvertToBitmap()
self.button1 = wx.BitmapButton(self.panel1, id=-1, bitmap=image1,
        pos=(10, 20), size = (200, image1.GetHeight()+5))

它很好地创建了一些带有图标的按钮。但是,如何在上面添加标签?

我在文档中读到,BitmapButton 继承自具有 SetLabel() 方法的 Button。我试过了

self.button1.SetLabel("Continue")

但什么都没有。仅带有图标的按钮。

我做错了什么?

4

1 回答 1

0

wx.lib.buttons您获得ThemedGenBitmapTextButton包含图像和文本的按钮的类。该库中有更多按钮类。

于 2012-12-18T10:39:29.357 回答