12345678910111213141516171819202122232425 |
- ---@class KLUITeamApplicationPanelView:UIKmlLuaViewBase
- ---@field panel_1259 UIKmlLuaControl
- ---@field img_1260 UIKmlLuaControl
- ---@field text_1261 UIKmlLuaControl
- ---@field text_1262 UIKmlLuaControl
- ---@field text_1263 UIKmlLuaControl
- ---@field text_1264 UIKmlLuaControl
- ---@field text_1265 UIKmlLuaControl
- ---@field application_scrollview UIKmlLuaControl
- ---@field application_gridview UIKmlLuaControl
- ---@field application_datalist UIKmlLuaControl
- ---@field gridview1 UIKmlLuaControl
- ---@field agreebtn UIKmlLuaControl
- ---@field clearbtn UIKmlLuaControl
- local KLUITeamApplicationPanelView = {}
- setmetatable(KLUITeamApplicationPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Team/Panel/KLUITeamApplication/KLUITeamApplicationPanelKml'
- KLUITeamApplicationPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUITeamApplicationPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUITeamApplicationPanelView.content)
- end
- return KLUITeamApplicationPanelView
|