123456789101112131415161718192021222324252627282930313233343536373839404142 |
- ---@class KLLoranSiegeCopyTaskPanelView:UIKmlLuaViewBase
- ---@field Boss UIKmlLuaControl
- ---@field ActivityName UIKmlLuaControl
- ---@field line_1 UIKmlLuaControl
- ---@field line_2 UIKmlLuaControl
- ---@field task_root UIKmlLuaControl
- ---@field pos_root UIKmlLuaControl
- ---@field TaskButton UIKmlLuaControl
- ---@field arrow UIKmlLuaControl
- ---@field taskIcon UIKmlLuaControl
- ---@field stateName UIKmlLuaControl
- ---@field taskName UIKmlLuaControl
- ---@field taskProgress UIKmlLuaControl
- ---@field nowOccupyingPartyTitle UIKmlLuaControl
- ---@field nowOccupyingPartyName UIKmlLuaControl
- ---@field unionRankTitle UIKmlLuaControl
- ---@field unionRankText UIKmlLuaControl
- ---@field myRankTitle UIKmlLuaControl
- ---@field myRankText UIKmlLuaControl
- ---@field myPointsTitle UIKmlLuaControl
- ---@field myPointsText UIKmlLuaControl
- ---@field end_time UIKmlLuaControl
- ---@field HelpButton UIKmlLuaControl
- ---@field text_countdown_tips UIKmlLuaControl
- ---@field text_countdown_tips_text UIKmlLuaControl
- ---@field begin_root UIKmlLuaControl
- ---@field openDes UIKmlLuaControl
- ---@field openDesTxt UIKmlLuaControl
- ---@field exitBtn UIKmlLuaControl
- ---@field loading UIKmlLuaControl
- ---@field loadingText UIKmlLuaControl
- ---@field loadingNumText UIKmlLuaControl
- local KLLoranSiegeCopyTaskPanelView = {}
- setmetatable(KLLoranSiegeCopyTaskPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/LoranSiege/Panel/KLLoranSiegeCopyTask/KLLoranSiegeCopyTaskPanelKml'
- KLLoranSiegeCopyTaskPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLLoranSiegeCopyTaskPanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLLoranSiegeCopyTaskPanelView.content)
- end
- return KLLoranSiegeCopyTaskPanelView
|