繁体   English   中英

wxpython:如何用在其他位置创建的网格填充“笔记本”选项卡?

[英]wxpython: How can I fill a Notebook tab with a grid created elsewhere?

现在,我有一个用wxpython构建的GUI,它可以成功地从.csv中提取数据,填充wx网格对象,然后将其显示在新框架中。 我还成功地打开了主窗口,以笔记本样式显示一些信息。 我的目标是做到这一点,以便在我运行程序时,一个主页选项卡包含与之前创建的窗口相同的填充网格。 让我感到困扰的问题是,网格的创建和网格填充(两件分开的事情)是在不同(但已导入)本地文件中的不同类中完成的。 此外,下面的代码在我的程序上下文中提供了AttributeError:'TabPanel'对象没有属性'con',这很有意义,但是我没有

这是不可能的吗?或者我有什么想念的(甚至我还很清楚吗?)? 以下是我想可能是相关代码的内容。 (为方便起见,类和构造函数行的间距不正确。)非常感谢!

制表/笔记本电脑:

class TabPanel(wx.Panel):    
    def __init__(self, parent):
        wx.Panel.__init__(self, parent=parent, id=wx.ID_ANY)

        self.sizer = wx.BoxSizer(wx.VERTICAL)
        txtOne = wx.Panel(Employee.EmployeeViewAllFrame(self).show())

        self.sizer.Add(txtOne, 0, wx.ALL , 50)

        self.SetSizer(self.sizer)


class NotebookDemo(wx.Notebook):
    def __init__(self, parent):
        wx.Notebook.__init__(self, parent, id=wx.ID_ANY, style=
                         wx.BK_DEFAULT
                         #wx.BK_TOP 
                         #wx.BK_BOTTOM
                         #wx.BK_LEFT
                         #wx.BK_RIGHT
                         )

        # Create the first tab and add it to the notebook
        tabOne = TabPanel(self)
        tabOne.SetBackgroundColour("BLUE")
        self.AddPage(tabOne, "Main")

        # Create and add the second tab
        tabTwo = TabPanel(self)
        self.AddPage(tabTwo, "Employees")

        # Create and add the third tab
        self.AddPage(TabPanel(self), "Tasks")

网格/框架:

class empGrid(wx.grid.Grid):
    def __init__(self, parent):
        wx.grid.Grid.__init__(self,parent,size = (1500,1000))
        self.SetDefaultCellOverflow(False)
        self.EnableEditing(False)
        self.EnableDragGridSize(False)
        self.EnableDragRowSize(False)
        self.EnableDragColSize(False)
        self.grid = gridlib.Grid(panel2)
        self.CreateGrid(TOTALEMPLOYEES, 12)
        self.SetColLabelValue(0, "Name")

        self.SetColSize(0, 200)
        self.SetColLabelValue(1, "Grade")
        self.SetColLabelValue(2, "NGID")
        self.SetColLabelValue(3, "MyID")
        self.SetColLabelValue(4, "Skillset1")
        self.SetColSize(4, 110)
        self.SetColLabelValue(5, "Skillset2")
        self.SetColSize(5, 110)
        self.SetColLabelValue(6, "SME")
        self.SetColLabelValue(7, "Org")
        self.SetColLabelValue(8, "Manager")
        self.SetColSize(8, 125)
        self.SetColLabelValue(9, "OfficePriority")
        self.SetColSize(9, 165)
        self.SetColLabelValue(10, "Comments")
        self.SetColSize(10, 200)
        self.SetColLabelValue(11, "Loan?")
        #self.AutoSizeColumns(setAsMin=True)


class EmployeeViewAllFrame(wx.Frame): 
  def __init__(self, parent):
    wx.Frame.__init__(self, parent,title = 'View All Employees',size=(wx.EXPAND,wx.EXPAND))
    self.currentid = ''
    self.currentrow = 0
    self.parent = parent
    #Declare all panels
    self.panelMain = wx.Panel(self,size = (1500, 1000)) 
    self.panelSide = wx.Panel(self,size = (wx.EXPAND, 1000)) 
    #self.panelTitle = wx.Panel(self,size = (1000,30))      
    #self.buttonPanel = wx.Panel(self)  

    self.buttonExit = wx.Button(self.panelSide, label="exit")
    self.buttonExit.Bind(wx.EVT_BUTTON, self.OnExitButton)

    cur = self.parent.con.cursor()
    cur.execute("SELECT * FROM " + EMPLOYEETABLE + " ORDER BY Name;")
    self.rows = cur.fetchall()#Load all the employees into self.rows and organize by name

    self.employeenumber = len(self.rows) #Going to be the fetched number from the database
    global TOTALEMPLOYEES 
    TOTALEMPLOYEES = self.employeenumber

    #Set up all the column panels and place into an array to be modified
    #self.empGrid = empGrid(self.panelMain)
    self.empGrid = empGrid(EMP.MainWindow.panel2)
    for i in xrange (0, TOTALEMPLOYEES):
        self.empGrid.SetRowLabelValue(i, str(i+1))
        for j in xrange (0,12):
            self.empGrid.SetCellValue(i, j, str(self.rows[i][j]))
            if i % 2 == 1:#if it is odd, change the color to make it easier on the eyes
                self.empGrid.SetCellBackgroundColour(i, j, 'LIGHT BLUE') #JTEST

    self.empGrid.Bind(wx.grid.EVT_GRID_CELL_LEFT_DCLICK, self.OnGridDoubleClick)
    self.empGrid.Bind(wx.grid.EVT_GRID_CELL_RIGHT_DCLICK, self.OnGridDoubleClickRight)

    #Now do the same thing for the buttons
    text = wx.StaticText(self.panelSide, label = "Double left click an employee to modify fields\n\n\n  Double right click an employee to add a new employee task" , size = (wx.EXPAND,400))        
    sideSizer = wx.BoxSizer(wx.VERTICAL)        
    sideSizer.Add(text)
    sideSizer.Add(self.buttonExit)
    self.panelSide.SetSizer(sideSizer)
    self.panelSide.Layout()


    #Put them all together then display
    displayEmployeeSizer = wx.BoxSizer(wx.VERTICAL)
    displayEmployeeSizer.Add(self.empGrid) #JGRID
    self.panelMain.SetSizer(displayEmployeeSizer)
    self.panelMain.Layout() 

    viewEmployeeSizer = wx.BoxSizer(wx.HORIZONTAL)
    #viewEmployeeSizer.Add(self.panelTitle,proportion=0)
    viewEmployeeSizer.Add(self.panelMain,proportion=0)
    viewEmployeeSizer.Add(self.panelSide,proportion = 0)
    #viewEmployeeSizer.Add(self.buttonPanel, proportion=0, flag = wx.ALIGN_CENTER_HORIZONTAL)
    #viewEmployeeSizer.Add(self.buttonExit, proportion = 0, flag = wx.ALIGN_CENTER_HORIZONTAL)

    self.SetSizer(viewEmployeeSizer) #Set the panel size
    #self.buttonPanel.Layout()        
    self.Layout()
    self.Show()

您不能在两个不同的父对象中显示完全相同的窗口小部件。 相反,创建独立框架时需要创建empGrid实例,而创建笔记本时则需要创建其他实例。

实例化empGrid时,会将笔记本面板/页面作为父面板传递给它。 创建框架时,您将框架(或其面板)作为父级传递。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM