123456789101112131415161718192021222324 |
- ---@class KLUICommonTipsPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field bgImg UIKmlLuaControl
- ---@field img_title UIKmlLuaControl
- ---@field txt_title UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- ---@field tipsContent UIKmlLuaControl
- ---@field btn_cancel UIKmlLuaControl
- ---@field btn_sure UIKmlLuaControl
- ---@field input UIKmlLuaControl
- ---@field slider UIKmlLuaControl
- ---@field toggle UIKmlLuaControl
- ---@field tipsItemCount UIKmlLuaControl
- local KLUICommonTipsPanelView = {}
- setmetatable(KLUICommonTipsPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Common/Panel/KLUICommonTips/KLUICommonTipsPanelKml'
- KLUICommonTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUICommonTipsPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUICommonTipsPanelView.content)
- end
- return KLUICommonTipsPanelView
|