12345678910111213141516171819202122232425262728293031323334 |
- ---@class KLSettlementPanelView:UIKmlLuaViewBase
- ---@field bgClose UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field bg1 UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field gainExprienceBg UIKmlLuaControl
- ---@field killMonsterCountBg UIKmlLuaControl
- ---@field gainExprienceBg1 UIKmlLuaControl
- ---@field killMonsterCountBg1 UIKmlLuaControl
- ---@field togglegroup UIKmlLuaControl
- ---@field scrollviewList UIKmlLuaControl
- ---@field select_layout UIKmlLuaControl
- ---@field select_item_list UIKmlLuaControl
- ---@field gainExprience UIKmlLuaControl
- ---@field killMonsterCount UIKmlLuaControl
- ---@field costContainer UIKmlLuaControl
- ---@field itemBg UIKmlLuaControl
- ---@field costItem UIKmlLuaControl
- ---@field costItemCountTxt UIKmlLuaControl
- ---@field addbtn UIKmlLuaControl
- ---@field costEnterCountTxt UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- ---@field okBtn UIKmlLuaControl
- local KLSettlementPanelView = {}
- setmetatable(KLSettlementPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Activity/Panel/KLSettlement/KLSettlementPanelKml'
- KLSettlementPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLSettlementPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLSettlementPanelView.content)
- end
- return KLSettlementPanelView
|