2012-12-18 35 views
1

如何讓它工作? 我試圖創建帶有圖標和標籤的按鈕。像這些按鈕:wxPython帶圖標+標籤的wxBitmapButton

Like this example (image)

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") 

但沒什麼。只有圖標的按鈕。

我做錯了什麼?

回答

0

wx.lib.buttons你得到ThemedGenBitmapTextButton類包含一個圖像和文本的按鈕。該lib中有更多的按鈕類。

+0

謝謝!其作品! – woozly