123456789101112131415161718192021222324252627282930 |
- ---@class KLUIMapBranchPanelView:UIKmlLuaViewBase
- ---@field img_522 UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field img4 UIKmlLuaControl
- ---@field currentLine_txt UIKmlLuaControl
- ---@field allLine_txt UIKmlLuaControl
- ---@field img_523 UIKmlLuaControl
- ---@field text1 UIKmlLuaControl
- ---@field redName_btn UIKmlLuaControl
- ---@field switch_branch_togglegroup UIKmlLuaControl
- ---@field branch_layout UIKmlLuaControl
- ---@field topBtnGroup UIKmlLuaControl
- ---@field layout2 UIKmlLuaControl
- ---@field gold_toggle UIKmlLuaControl
- ---@field text2 UIKmlLuaControl
- ---@field normal_toggle UIKmlLuaControl
- ---@field text3 UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- local KLUIMapBranchPanelView = {}
- setmetatable(KLUIMapBranchPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Map/Panel/KLUIMapBranch/KLUIMapBranchPanelKml'
- KLUIMapBranchPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIMapBranchPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIMapBranchPanelView.content)
- end
- return KLUIMapBranchPanelView
|