1234567891011121314151617181920212223242526272829303132333435363738 |
- ---@class KLServerSelectionPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field btn_closeSelectServer UIKmlLuaControl
- ---@field halfYearTitle UIKmlLuaControl
- ---@field go_serverGroup UIKmlLuaControl
- ---@field layout5 UIKmlLuaControl
- ---@field serverGroup UIKmlLuaControl
- ---@field sv_selectServers UIKmlLuaControl
- ---@field gridview7 UIKmlLuaControl
- ---@field SelectServer UIKmlLuaControl
- ---@field sv_haveRoles UIKmlLuaControl
- ---@field gridview9 UIKmlLuaControl
- ---@field haveRoles UIKmlLuaControl
- ---@field serverStateGroup UIKmlLuaControl
- ---@field ico_state1 UIKmlLuaControl
- ---@field ico UIKmlLuaControl
- ---@field txt UIKmlLuaControl
- ---@field ico_state2 UIKmlLuaControl
- ---@field img15 UIKmlLuaControl
- ---@field text16 UIKmlLuaControl
- ---@field ico_state3 UIKmlLuaControl
- ---@field img18 UIKmlLuaControl
- ---@field text19 UIKmlLuaControl
- ---@field serverGroupToggleGroup UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- local KLServerSelectionPanelView = {}
- setmetatable(KLServerSelectionPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/PCPlatform/Panel/KLServerSelection/KLServerSelectionPanelKml'
- KLServerSelectionPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLServerSelectionPanelView:Init(parent)
- --local p = parent and parent.kmlControl
- --self.root = UIKmlLuaControl(CS.KmlResourceManager.Create(p,kmlPath,KLServerSelectionPanelView.content))
- self:InitRoot(parent,kmlPath,KLServerSelectionPanelView.content)
- end
- return KLServerSelectionPanelView
|