码迷,mamicode.com
首页 > 其他好文 > 详细

科学计算三维可视化---TraitsUI(View定义界面)

时间:2018-07-14 14:52:32      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:mode   its   int   image   com   http   resizable   file   zab   

View定义界面

技术分享图片

技术分享图片

使用View来自定义界面

技术分享图片

技术分享图片

技术分享图片

class ModelManager(HasTraits):
    model_name = Str
    category = Str
    model_file = Str
    model_number = Int

    view = View(
        Item("model_name", label=u"模型名称"),  #将Traits属性和Item关联起来,分别定义标签,中文需要使用u
        Item("model_file", label=u"文件名"),
        Item("category", label=u"模型类型"),
        Item("model_number", label=u"模型数量"),
        title=u"模型资料",
        width=220,
        resizable=True
    )

model = ModelManager()
model.configure_traits()

 技术分享图片技术分享图片

 

科学计算三维可视化---TraitsUI(View定义界面)

标签:mode   its   int   image   com   http   resizable   file   zab   

原文地址:https://www.cnblogs.com/ssyfj/p/9309269.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!