1234567891011121314151617181920212223242526 |
- ---@class KLUnionJoinPanelView:UIKmlLuaViewBase
- ---@field img_27 UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- ---@field table_title_bg UIKmlLuaControl
- ---@field title_name UIKmlLuaControl
- ---@field title_name UIKmlLuaControl
- ---@field title_name UIKmlLuaControl
- ---@field title_name UIKmlLuaControl
- ---@field table_bg UIKmlLuaControl
- ---@field table_list UIKmlLuaControl
- ---@field union_list_view UIKmlLuaControl
- ---@field union_data_list UIKmlLuaControl
- ---@field one_key_apply_to_join UIKmlLuaControl
- ---@field btn_text UIKmlLuaControl
- local KLUnionJoinPanelView = {}
- setmetatable(KLUnionJoinPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Union/Panel/KLUnionJoin/KLUnionJoinPanelKml'
- KLUnionJoinPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUnionJoinPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUnionJoinPanelView.content)
- end
- return KLUnionJoinPanelView
|