zoukankan      html  css  js  c++  java
  • menu

    class child {
          inherit itk::Widget  
          public variable child_a
          constructor { args }  {
           itk_option add hull.width hull.height
           $itk_component(hull) configure -width 1050 -height 768 
           wm minsize [winfo toplevel $itk_component(hull)] 1050 768
           pack propagate $itk_interior 0
          
           itk_component add menu {
      menu $itk_interior.menu \
          -tearoff 0 \
          -borderwidth 1
      }
          
           [winfo toplevel $itk_component(hull)] configure \
          -menu $itk_component(menu)
          
           itk_component add sessionmenu {
       menu $itk_interior.menu.session \
           -tearoff 0
      }
          
        $itk_component(menu) add cascade \
          -label "Session" \
          -menu $itk_component(sessionmenu)

           eval itk_initialize $args
          }
    }

  • 相关阅读:
    JAVA规范
    JMS开发指南
    JMS异步消息机制
    大型系统中使用JMS优化技巧–Sun OpenMQ
    02.MyBatis配置文件详解
    elasticsearch.yml配置文件
    04.ActiveMQ与Spring JMS整合
    01.MyBatis入门
    03.JMS深入
    02.JMS基础
  • 原文地址:https://www.cnblogs.com/greencolor/p/2128555.html
Copyright © 2011-2022 走看看