12345678910111213141516 |
- ---@class KLUIInfoChangeItemView:UIKmlLuaViewBase
- ---@field item_root UIKmlLuaControl
- ---@field img_effect UIKmlLuaControl
- ---@field img_up UIKmlLuaControl
- ---@field text_attr UIKmlLuaControl
- local KLUIInfoChangeItemView = {}
- setmetatable(KLUIInfoChangeItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Role/Item/KLUIInfoChange/KLUIInfoChangeItemKml'
- KLUIInfoChangeItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIInfoChangeItemView:Init(parent)
- self:InitRoot(parent,kmlPath,KLUIInfoChangeItemView.content)
- end
- return KLUIInfoChangeItemView
|