簡單的Tree Control實例

*&---------------------------------------------------------------------*
*& Report YTEST00A
*&---------------------------------------------------------------------*
*&Violin 2021/4/28
*&---------------------------------------------------------------------*
REPORT ytest00a.

*第9章 Tree Control的使用---------------------------------------------------------------------*
*9.1簡單的Tree Control實例
**功能碼返回值
DATA: ok_code TYPE sy-ucomm,
      save_ok TYPE sy-ucomm.

*定制對象
DATA: wa_container        TYPE scrfname VALUE 'TREE',
*客戶對象
      wa_custom_container TYPE REF TO cl_gui_custom_container,
      wa_tree             TYPE REF TO cl_gui_simple_tree.
*NODE節點表
DATA: node_table LIKE TABLE OF mtreesnode,
*節點
      node1      TYPE mtreesnode.
*定義內表,變量需要傳遞,不加HEADER LINE
DATA: wa_spfli TYPE TABLE OF spfli.
*當雙擊時取得節點Key值與節點文本值變量
DATA: nodekey(200)  VALUE 'NODE',nodetext(200) value 'NONE'.

*定義對象,定義對象的雙擊方法,用於將該對象雙擊方法分配到樹雙擊事件
CLASS lcl_application DEFINITION DEFERRED.

*對象定義
CLASS lcl_application DEFINITION.

  PUBLIC SECTION.
*自定義雙擊方法,參數為節點關鍵字
    METHODS handle_node_double_click
      FOR EVENT node_double_click
                  OF cl_gui_simple_tree
      IMPORTING node_key.

ENDCLASS.

*對象方法實現
CLASS lcl_application IMPLEMENTATION.
  METHOD handle_node_double_click.
*當雙擊時彈出信息窗口,調試用
    MESSAGE i208(00) WITH 'DOUBLE'.
*獲取KEY值,在窗口顯示
    nodekey = node_key.
*從節點內表中按關鍵字讀取單個節點
    READ TABLE node_table WITH KEY node_key = node_key INTO node1.
*將節點文本在窗口中顯示
    nodetext = node1-text.
  ENDMETHOD.
ENDCLASS.

*自定義對象實例
DATA: g_application TYPE REF TO lcl_application.

START-OF-SELECTION.

  CREATE OBJECT g_application.
*直接調用窗口,在窗口PBO分配雙擊對象
  CALL SCREEN 590.

MODULE status_0100 OUTPUT.
  IF wa_custom_container IS INITIAL.
    PERFORM create_tree.
  ENDIF.
ENDMODULE.

*用戶交互
MODULE user_command_0100 INPUT.

  save_ok = ok_code.
  CLEAR ok_code.
  CASE save_ok.
    WHEN 'CANCEL'.
      LEAVE PROGRAM.
  ENDCASE.

ENDMODULE.

*創建樹及子節點
FORM create_tree.

*事件內表及單個事件對象
  DATA: events TYPE cntl_simple_events,
        event1 TYPE cntl_simple_event.
*建立定制控制對象
  CREATE OBJECT wa_custom_container
    EXPORTING
      container_name = wa_container.

*  建立樹對象
  CREATE OBJECT wa_tree
    EXPORTING
*     lifetime            =
      parent              = wa_custom_container
*     shellstyle          =
      node_selection_mode = cl_gui_simple_tree=>node_sel_mode_single
*     hide_selection      =
*     name                =
*    EXCEPTIONS
*     lifetime_error      = 1
*     cntl_system_error   = 2
*     create_error        = 3
*     failed              = 4
*     illegal_node_selection_mode = 5
*     others              = 6
    .
  IF sy-subrc <> 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.

*開始建立以國家->城市->城區三層的樹
  CLEAR node1.
*節點關鍵字
  node1-node_key = '國家'.
*  第一層
  CLEAR node1-relatkey.
  CLEAR node1-relatship.
*  文件夾
  node1-hidden = ''.
  node1-disabled = ''.
  node1-isfolder = 'X'.
*  不帶ICON
  CLEAR node1-n_image.
  CLEAR node1-exp_image.
  CLEAR node1-expander.

  node1-text = '中國'.
  APPEND node1 TO node_table.
*  二層節點
  CLEAR node1.
  node1-node_key = '城市北京'.
*  上層關係
  node1-relatkey = '國家'.
  node1-relatship = cl_gui_simple_tree=>relat_last_child.
  node1-hidden = ''.
  node1-disabled = ''.
  node1-isfolder = 'X'.
  CLEAR node1-n_image.
  CLEAR node1-exp_image.
  CLEAR node1-expander.
  node1-text = '北京'.
  APPEND node1 TO node_table.

  CLEAR node1.
  node1-node_key = '城市上海'.
*  上層關係
  node1-relatkey = '國家'.
  node1-relatship = cl_gui_simple_tree=>relat_last_child.
  node1-hidden = ''.
  node1-disabled = ''.
  node1-isfolder = 'X'.
  CLEAR node1-n_image.
  CLEAR node1-exp_image.
  CLEAR node1-expander.
  node1-text = '上海'.
  APPEND node1 TO node_table.


  CLEAR node1.
  node1-node_key = 'KEY1'.
*  上層關係
  node1-relatkey = '城市北京'.
  node1-relatship = cl_gui_simple_tree=>relat_last_child.
  node1-hidden = ''.
  node1-disabled = ''.
  node1-isfolder = ''.
*圖標,可運行SHOWICON查閱
  node1-n_image = '@9Y@'.
  node1-exp_image = '@9Y@'.
  CLEAR node1-expander.
  node1-text = '崇文區'.
  APPEND node1 TO node_table.


  CLEAR node1.
  node1-node_key = 'KEY2'.
*  上層關係
  node1-relatkey = '城市北京'.
  node1-relatship = cl_gui_simple_tree=>relat_last_child.
  node1-hidden = ''.
  node1-disabled = ''.
  node1-isfolder = ''.
*圖標,可運行SHOWICON查閱
  node1-n_image = '@DF@'.
  node1-exp_image = '@DF@'.
  CLEAR node1-expander.
  node1-text = '西城區'.
  APPEND node1 TO node_table.

  CLEAR node1.
  node1-node_key = 'KEY3'.
*  上層關係
  node1-relatkey = '城市上海'.
  node1-relatship = cl_gui_simple_tree=>relat_last_child.
  node1-hidden = ''.
  node1-disabled = ''.
  node1-isfolder = ''.
*圖標,可運行SHOWICON查閱
  node1-n_image = '@NL@'.
  node1-exp_image = '@NL@'.
  CLEAR node1-expander.
  node1-text = '閔行區'.
  APPEND node1 TO node_table.

*按照節點內容添加節點
  CALL METHOD wa_tree->add_nodes
    EXPORTING
      table_structure_name = 'MTREESNODE'
      node_table           = node_table
*    EXCEPTIONS
*     error_in_node_table  = 1
*     failed               = 2
*     dp_error             = 3
*     table_structure_name_not_found = 4
*     others               = 5
    .
  IF sy-subrc <> 0.
*   Implement suitable error handling here
  ENDIF.

*定義雙擊事件
  event1-eventid = cl_gui_simple_tree=>eventid_node_double_click.
  event1-appl_event = 'X'.
  APPEND event1 TO events.

*添加事件內表
  CALL METHOD wa_tree->set_registered_events
    EXPORTING
      events = events
*  EXCEPTIONS
*     cntl_error                = 1
*     cntl_system_error         = 2
*     illegal_event_combination = 3
*     others = 4
    .
  IF sy-subrc <> 0.
* Implement suitable error handling here
  ENDIF.

*將以定義的雙擊事件分配至樹對象
  SET HANDLER g_application->handle_node_double_click FOR wa_tree.


ENDFORM.

效果:

可參考文檔:https://blog.csdn.net/Jay_1989/article/details/51681511

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值