早上好,
我正在使用wx.BoxSizer中的wx.GridBagSizer编写结果表。一旦我更新了新数据,我想完全删除GridBagSizer,创建一个新的GridBagsizer并在新的上显示新的结果。但是,当我更新数据时,值被正确更新,但新的GridBagSizer被移动到一个位置,好像前一个GridBagSizer仍然存在....
你可以帮帮我吗? 感谢 def actualiza_res(self, presas_sel):
self.presas_sel = presas_sel
esquema = self.link_principal.esquema
if esquema["modelos"] and esquema["res_prio"]==False:
self.gbsint.Clear(True)
self.gbsint.Layout()
self.Refresh()
self.Update()
self.gbsint=wx.GridBagSizer(vgap=10, hgap=10)
self.gbsint.Layout()
self.Refresh()
self.Update()
text11=wx.StaticText(self, -1,_('Current situation'))
font11 = wx.Font(12, wx.ROMAN, wx.NORMAL, wx.BOLD)
text11.SetFont(font11)
self.gbsint.Add(text11, (3, 1), flag=wx.LEFT|wx.ALIGN_CENTER, border=40)
self.ct=['-']*(len(self.resct))
self.ec=['-']*len(self.resec)
self.ps=['-']*len(self.resps)
self.dpa=['-']*len(self.resdpa)
j=4
for res in range(len(self.ct)):
self.gbsint.Add(wx.StaticText(self, -1,str(esquema["modelos"][presas_sel[-1]]["CRIDPA"][2][res])),(j, 1), flag=wx.LEFT|wx.ALIGN_CENTER, border=40)
j += 1
j=11
for res in range(len(self.ec)):
self.gbsint.Add(wx.StaticText(self, -1,str(esquema["modelos"][presas_sel[-1]]["CRIDPA"][2][res])),(j, 1), flag=wx.LEFT|wx.ALIGN_CENTER, border=40)
j += 1
j=18
for res in range(len(self.ps)):
self.gbsint.Add(wx.StaticText(self, -1,str(esquema["modelos"][presas_sel[-1]]["CRIDPA"][2][res])),(j, 1), flag=wx.LEFT|wx.ALIGN_CENTER, border=40)
j += 1
#self.totalcri=wx.StaticText(self, -1, _('-'), style=wx.ALIGN_CENTER)
self.gbsint.Add(wx.StaticText(self, -1,str(esquema["modelos"][presas_sel[-1]]["riesgo"][0])),(27, 1), flag=wx.LEFT|wx.ALIGN_CENTER, border=40) #Total CRI
j=29
for res in range(len(self.dpa)):
self.gbsint.Add(wx.StaticText(self, -1,str(esquema["modelos"][presas_sel[-1]]["CRIDPA"][2][res])),(j, 1), flag=wx.LEFT|wx.ALIGN_CENTER, border=40)
j += 1
#self.totaldpa=wx.StaticText(self, -1, _('-'), style=wx.ALIGN_CENTER)
self.gbsint.Add(wx.StaticText(self, -1,str(esquema["modelos"][presas_sel[-1]]["riesgo"][2])),(33, 1), flag=wx.LEFT|wx.ALIGN_CENTER, border=40) #TOTalDPA
#self.totalr=wx.StaticText(self, -1, _('-'), style=wx.ALIGN_CENTER)
self.gbsint.Add(wx.StaticText(self, -1,str(esquema["modelos"][presas_sel[-1]]["riesgo"][4])),(34, 1), flag=wx.LEFT|wx.ALIGN_CENTER, border=40)#Clase
#Datos actuales de la presa
self.textos["presas"].SetLabel(str(esquema["modelos"][presas_sel[-1]]["presas"])) #Nombre de la presa
self.textos["Fecha ultima inspeccion"].SetLabel(str(esquema["modelos"][presas_sel[-1]]["Fecha ultima inspeccion"]))#ultima inspeccion
self.textos["riesgo"].SetLabel(str(esquema["modelos"][presas_sel[-1]]["riesgo"][-1])) #Classe
self.sizer_hor.Add(self.gbsint,flag=wx.ALIGN_LEFT)
self.SetupScrolling()
self.Refresh()
self.Layout()
self.Update()
答案 0 :(得分:1)
我发现自己错过了一条线" self.gbsint.SetEmptyCellSize((0,0))"在创建新的GridBagSizer时,有效地不考虑先前列和行的存在。