我在我的应用程序的主窗口中使用了 Entry 字段并使用 StringVar 来填充它,它可以工作。现在,我创建了新窗口,并且我有新的条目字段,我想填写与第一个窗口中的条目相同的内容。我尝试使用与主窗口中使用的输入字段相同的变量,但仍然看不到文本。
def napraviGUI(self):
self.__imeTxt = StringVar()
self.__ime_entry = Entry(panelZaPrikaz,width=35,textvariable = self.__imeTxt,state=DISABLED)
self.__ime_entry.grid(row=2,column=2)
def popuniEntry(self,jedanPacijent):
self.__imeTxt.set(jedanPacijent.ime)
#this is inside second window
self.__ime_pregled_entry=Entry(self.prikazPacijenta,textvariable=self.__imeTxt,width=35,state=DISABLED)
self.__ime_pregled_entry.grid(row = 1,column = 2,sticky = NW)
#and this Entry don't show text
杨魅力
相关分类