1234567891011121314151617181920 |
- ---@class KLUICommonStrTipsPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field MaskCloseButton UIKmlLuaControl
- ---@field bgImg UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- ---@field scrollview1 UIKmlLuaControl
- ---@field layout2 UIKmlLuaControl
- ---@field tipContent UIKmlLuaControl
- ---@field txt_title UIKmlLuaControl
- local KLUICommonTipsPanelView = {}
- setmetatable(KLUICommonTipsPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Common/Panel/KLUICommonStrTips/KLUICommonStrTipsPanelKml'
- 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
|