如何自动滚动wx.grid表?

时间:2011-12-29 08:45:23

标签: python wxwidgets

python 2.7我有wx.grid表。如何进行垂直滚动?

我试过了:

MakeCellVisible(rows,cols) 

SetGridCursor(rows, cols)

但他们没有用。

2 个答案:

答案 0 :(得分:1)

使用:

grid_widget.Scroll(row, column)

编辑:这里有一个有效的例子:

enter image description here

这是用:

制作的
import wx
import wx.grid as grid
#
class Button(wx.Frame):
    def __init__(self, parent, source):
        wx.Frame.__init__(self, parent, -1, size=(100,100))
        self.source = source
        self.pos = 0 
        self.button = wx.Button(self, label='0')
        self.Bind(wx.EVT_BUTTON, self.onbutton, self.button)
        self.Show()

    def onbutton(self, evt):
        self.pos += 1
        self.source.grid.Scroll(self.pos, self.pos) 
        self.button.SetLabel(str(self.pos))  

class Frame(wx.Frame):
    def __init__(self, parent):
        wx.Frame.__init__(self, parent, -1, "Grid", size=(350,250))
        self.grid = grid.Grid(self)
        self.grid.CreateGrid(20, 20)
        self.but = Button(None, self)


if __name__ == '__main__':
    app = wx.PySimpleApp()
    frame = Frame(None)
    frame.Show()
    app.MainLoop()

答案 1 :(得分:0)

我遇到了同样的问题。只是尝试使用网格函数MakeCellVisible(row,col)