当前位置: 首页>>代码示例>>Python>>正文


Python Form.show_modal方法代码示例

本文整理汇总了Python中form.Form.show_modal方法的典型用法代码示例。如果您正苦于以下问题:Python Form.show_modal方法的具体用法?Python Form.show_modal怎么用?Python Form.show_modal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在form.Form的用法示例。


在下文中一共展示了Form.show_modal方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: cool

# 需要导入模块: from form import Form [as 别名]
# 或者: from form.Form import show_modal [as 别名]
 def cool():
     global f
     messagebox.show('hello world')
     f1 = Form(caption="New Form", left=320, top=200)
     btn1 = Button(f1, caption='Hello', left=5, top=5, width=200, height=100)
     btn1.on_click = cool2
     btn1.background = 'blue'
     f1.show_modal()
     print "I'm a cool app"
开发者ID:todd-x86,项目名称:tkplus,代码行数:11,代码来源:tkplus.py

示例2: handle_exception

# 需要导入模块: from form import Form [as 别名]
# 或者: from form.Form import show_modal [as 别名]
def handle_exception(ex, stacktrace=None):
    err_icon = os.path.join(os.path.dirname(__file__), 'graphics', 'icon_error.gif')
    frm = Form(caption='Exception: {}'.format(ex.__class__.__name__),
               left=100, top=100, width=350, height=180)
    frm.resizable = False
    msg = Label(frm, left=45, top=5, width=305, height=40, caption=ex.message)
    msg.wordwrap = True
    img = Image(frm, left=5, top=15, width=32, height=32, file=err_icon)
    trace = Memo(frm, left=5, top=55, width=335, height=90)
    trace.text = stacktrace

    def close_form():
        frm.close()
    
    btn = Button(frm, left=140, top=148, width=65, height=27, caption="Close")
    btn.on_click = close_form
    frm.show_modal()
开发者ID:todd-x86,项目名称:tkplus,代码行数:19,代码来源:exception.py


注:本文中的form.Form.show_modal方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。