12345678910111213141516171819 |
- ---@class KLFriendAddPanelView:UIKmlLuaViewBase
- ---@field FriendAdd_ UIKmlLuaControl
- ---@field BtnClose UIKmlLuaControl
- ---@field add_friend_butten UIKmlLuaControl
- ---@field TextAddFriend UIKmlLuaControl
- ---@field friend_applay_butten UIKmlLuaControl
- ---@field TextFriendApply UIKmlLuaControl
- ---@field SubRoot UIKmlLuaControl
- local KLFriendAddPanelView = {}
- setmetatable(KLFriendAddPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/FriendSys/Panel/KLFriendAdd/KLFriendAddPanelKml'
- KLFriendAddPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLFriendAddPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLFriendAddPanelView.content)
- end
- return KLFriendAddPanelView
|