12345678910111213141516171819202122 |
- ---@class KLUnionApplyListPanelView:UIKmlLuaViewBase
- ---@field AutoPass UIKmlLuaControl
- ---@field InputField_level UIKmlLuaControl
- ---@field table_list UIKmlLuaControl
- ---@field table_list UIKmlLuaControl
- ---@field union_list_view UIKmlLuaControl
- ---@field union_data_list UIKmlLuaControl
- ---@field btn_close UIKmlLuaControl
- ---@field btn_allRefuse UIKmlLuaControl
- ---@field btn_allAgree UIKmlLuaControl
- ---@field mask UIKmlLuaControl
- local KLUnionApplyListPanelView = {}
- setmetatable(KLUnionApplyListPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Union/Panel/KLUnionApplyList/KLUnionApplyListPanelKml'
- KLUnionApplyListPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUnionApplyListPanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLUnionApplyListPanelView.content)
- end
- return KLUnionApplyListPanelView
|