12345678910111213141516171819202122232425262728293031323334353637383940 |
- ---@class KLShapeShiftCardUnLockPanelView:UIKmlLuaViewBase
- ---@field img1 UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field btn_close UIKmlLuaControl
- ---@field togglegroup_card UIKmlLuaControl
- ---@field img_rank UIKmlLuaControl
- ---@field text_tips UIKmlLuaControl
- ---@field text_rank UIKmlLuaControl
- ---@field img_first UIKmlLuaControl
- ---@field text8 UIKmlLuaControl
- ---@field text_first_success UIKmlLuaControl
- ---@field text10 UIKmlLuaControl
- ---@field item_first UIKmlLuaControl
- ---@field text_first_cost UIKmlLuaControl
- ---@field btn_first_add UIKmlLuaControl
- ---@field img_second UIKmlLuaControl
- ---@field text14 UIKmlLuaControl
- ---@field text_second_success UIKmlLuaControl
- ---@field text16 UIKmlLuaControl
- ---@field item_second UIKmlLuaControl
- ---@field text_second_cost UIKmlLuaControl
- ---@field btn_second_add UIKmlLuaControl
- ---@field img20 UIKmlLuaControl
- ---@field img_bar UIKmlLuaControl
- ---@field loadingbar_value UIKmlLuaControl
- ---@field text_bar_value UIKmlLuaControl
- ---@field text_luck_tips UIKmlLuaControl
- ---@field btn_open UIKmlLuaControl
- ---@field btn_help UIKmlLuaControl
- local KLShapeShiftCardUnLockPanelView = {}
- setmetatable(KLShapeShiftCardUnLockPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/ShapeShiftCard/Panel/KLShapeShiftCardUnLock/KLShapeShiftCardUnLockPanelKml'
- KLShapeShiftCardUnLockPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLShapeShiftCardUnLockPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLShapeShiftCardUnLockPanelView.content)
- end
- return KLShapeShiftCardUnLockPanelView
|