郵件列表中有位兄弟感嘆wxPython不能你web form那樣可以reset表單內容,其實使用遍歷也是很容易實現。
def resetForm(win):
if hasattr(win,'Children'):
for w in win.Children:
resetForm(w)
if hasattr(win,'Value'):
win.Value=''
這樣不是很簡單嗎!
郵件列表中有位兄弟感嘆wxPython不能你web form那樣可以reset表單內容,其實使用遍歷也是很容易實現。
def resetForm(win):
if hasattr(win,'Children'):
for w in win.Children:
resetForm(w)
if hasattr(win,'Value'):
win.Value=''
這樣不是很簡單嗎!