本文介绍了如何向 wx.ScrolledPanel 添加项目?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想以层次结构(一个接一个)添加动态捕获的图像.我想将它们添加到 wx.ScrolledPanel
I want to add dynamically captured images in hierarchical structure (one after one). I want to add them to wx.ScrolledPanel
ScrolledPanel 定义 - 更新
self.hbox = wx.BoxSizer(wx.HORIZONTAL)
#self.sizer.Add(self.hbox)
self.scroll = scrolled.ScrolledPanel(self, id = -1, pos = wx.DefaultPosition, size = (500, 400), style= wx.SUNKEN_BORDER , name = "Scroll")
self.scroll.SetupScrolling(10,10,10,10)
#self.scroll.SetSizer(self.hbox)
self.sizer.Add(self.scroll)
#add to scroll
images = wx.StaticBitmap(self, id=-1, pos=wx.DefaultPosition,
size=(200,150),
style= wx.SUNKEN_BORDER)
images.SetBitmap(bmp)
self.hbox.Add(images, 1, wx.BOTTOM | wx.EXPAND | wx.ALL, 3)
self.scroll.SetSizer(self.hbox)
self.scroll.SetAutoLayout(1)
self.scroll.SetupScrolling()
self.SetSizerAndFit(self.sizer)
self.Refresh()
self.Layout()
- Python 2.6,Windows 32 位
更新后 - 我看到 scrollpanel
并将图像添加到 sizer.但是sizer没有显示在scrollPanel中.
After update - I see scrollpanel
and I add images to sizer. But sizer is not displaying in scrollPanel.
推荐答案
这是一个粗略但可运行的示例,说明您想要什么,其中有一个小故障,我还没有弄清楚原因!(你只需要在与脚本相同的目录中放置一个名为image.jpg"的缩略图大小的jpg)
Here is a crude but runnable example of what you want, there is a slight glitch in it thought that I haven't figured out the cause of yet! (You just need to put a thumbnail size jpg called "image.jpg" in the same directory as the script)
import wx
import wx.lib.scrolledpanel as scrolled
class ImageDlg(wx.Dialog):
def __init__(self, parent, title):
wx.Dialog.__init__(self, parent=parent,title=title, size=wx.DefaultSize)
self.scrollPnl = scrolled.ScrolledPanel(self, -1, size=(200, 200), style = wx.TAB_TRAVERSAL|wx.SUNKEN_BORDER)
self.addBtn = wx.Button(self, id=wx.ID_ADD)
self.Bind(wx.EVT_BUTTON, self.on_add, self.addBtn)
self.mainSizer = wx.BoxSizer(wx.VERTICAL)
self.scrollPnlSizer = wx.BoxSizer(wx.VERTICAL)
img = wx.Image("image.jpg", wx.BITMAP_TYPE_ANY)
staticBitmap = wx.StaticBitmap(self.scrollPnl, wx.ID_ANY, wx.BitmapFromImage(img))
self.scrollPnlSizer.Add(staticBitmap, 1, wx.EXPAND | wx.ALL, 3)
self.mainSizer.Add(self.addBtn)
self.mainSizer.Add(self.scrollPnl)
self.SetSizerAndFit(self.mainSizer)
def on_add(self, event):
img = wx.Image("image.jpg", wx.BITMAP_TYPE_ANY)
staticBitmap = wx.StaticBitmap(self.scrollPnl, wx.ID_ANY, wx.BitmapFromImage(img))
self.scrollPnlSizer.Add(staticBitmap, 1, wx.EXPAND | wx.ALL, 3)
self.scrollPnl.SetSizer(self.scrollPnlSizer)
self.scrollPnl.SetAutoLayout(1)
self.scrollPnl.SetupScrolling()
self.Refresh()
self.Layout()
class TestPanel(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent=parent)
openDlg_btn = wx.Button(self, label="Open Dialog")
self.Bind(wx.EVT_BUTTON, self.onBtn)
mainSizer = wx.BoxSizer(wx.HORIZONTAL)
mainSizer.Add(openDlg_btn, 0, wx.ALL, 10)
self.SetSizerAndFit(mainSizer)
self.Centre()
def onBtn(self, event):
dlg = ImageDlg(self, title='Image Dialog')
dlg.SetSize((300,300))
dlg.CenterOnScreen()
dlg.ShowModal()
dlg.Destroy()
class TestFrame(wx.Frame):
def __init__(self, parent):
wx.Frame.__init__(self, parent)
TestPanel(self)
if __name__ == "__main__":
app = wx.PySimpleApp()
frame = TestFrame(None)
frame.Show()
app.MainLoop()
这篇关于如何向 wx.ScrolledPanel 添加项目?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!