1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- ---@class KLUnionMemberListPanelView:UIKmlLuaViewBase
- ---@field img_12 UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- ---@field table_title_bg UIKmlLuaControl
- ---@field title_name UIKmlLuaControl
- ---@field title_level UIKmlLuaControl
- ---@field text_18 UIKmlLuaControl
- ---@field level_sort_up UIKmlLuaControl
- ---@field level_sort_up_black UIKmlLuaControl
- ---@field level_sort_down UIKmlLuaControl
- ---@field level_sort_down_black UIKmlLuaControl
- ---@field title_position UIKmlLuaControl
- ---@field text_24 UIKmlLuaControl
- ---@field position_sort_up UIKmlLuaControl
- ---@field position_sort_up_black UIKmlLuaControl
- ---@field position_sort_down UIKmlLuaControl
- ---@field position_sort_down_black UIKmlLuaControl
- ---@field title_state UIKmlLuaControl
- ---@field text_30 UIKmlLuaControl
- ---@field state_sort_up UIKmlLuaControl
- ---@field state_sort_up_black UIKmlLuaControl
- ---@field state_sort_down UIKmlLuaControl
- ---@field state_sort_down_black UIKmlLuaControl
- ---@field table_panel UIKmlLuaControl
- ---@field table_list UIKmlLuaControl
- ---@field union_list_view UIKmlLuaControl
- ---@field union_data_list UIKmlLuaControl
- ---@field shen_he UIKmlLuaControl
- ---@field btn_text UIKmlLuaControl
- ---@field shen_heTip UIKmlLuaControl
- ---@field tips UIKmlLuaControl
- ---@field on_line_tips UIKmlLuaControl
- local KLUnionMemberListPanelView = {}
- setmetatable(KLUnionMemberListPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Union/Panel/KLUnionMemberList/KLUnionMemberListPanelKml'
- KLUnionMemberListPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUnionMemberListPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUnionMemberListPanelView.content)
- end
- return KLUnionMemberListPanelView
|