MsgBox.py
上传用户:lswyart
上传日期:2008-06-12
资源大小:3441k
文件大小:0k
源码类别:

杀毒

开发平台:

Visual C++

  1. from wxPython.wx import *
  2. def MessageBox(parent, caption, message, flags = wxOK | wxICON_INFORMATION):
  3.         dlg = wxMessageDialog(parent, message, caption, flags)
  4.         try:
  5.             ret = dlg.ShowModal()
  6.         finally:
  7.             dlg.Destroy()    
  8.         return ret
  9.     
  10. def ErrorBox(parent, message):
  11.     return MessageBox(parent, 'Error', message, wxOK | wxICON_ERROR)
  12. def InfoBox(parent, message):
  13.     return MessageBox(parent, 'Information', message)
  14.