KLFriendChatItemView.lua 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ---@class KLFriendChatItemView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field chat_panel UIKmlLuaControl
  4. ---@field panel_root UIKmlLuaControl
  5. ---@field player_name UIKmlLuaControl
  6. ---@field chat_time UIKmlLuaControl
  7. ---@field di_panel UIKmlLuaControl
  8. ---@field pos_btn UIKmlLuaControl
  9. ---@field bag_btn UIKmlLuaControl
  10. ---@field biaoqing_btn UIKmlLuaControl
  11. ---@field text_input UIKmlLuaControl
  12. ---@field fasong UIKmlLuaControl
  13. ---@field sendMessageBtnTxt UIKmlLuaControl
  14. ---@field emoji_panel UIKmlLuaControl
  15. ---@field emoji_mask UIKmlLuaControl
  16. ---@field emoji_bg UIKmlLuaControl
  17. ---@field emoji UIKmlLuaControl
  18. ---@field all_emoji_layout UIKmlLuaControl
  19. ---@field emoji_data_list UIKmlLuaControl
  20. ---@field item_panel UIKmlLuaControl
  21. ---@field item_mask UIKmlLuaControl
  22. ---@field item_bg UIKmlLuaControl
  23. ---@field btn_bag UIKmlLuaControl
  24. ---@field btn_bag_select UIKmlLuaControl
  25. ---@field 背包 UIKmlLuaControl
  26. ---@field btn_equip UIKmlLuaControl
  27. ---@field btn_equip_select UIKmlLuaControl
  28. ---@field 穿戴 UIKmlLuaControl
  29. local KLFriendChatItemView = {}
  30. setmetatable(KLFriendChatItemView,UIKmlLuaViewBase)
  31. local kmlPath = 'dev/ui/FriendSys/Item/KLFriendChat/KLFriendChatItemKml'
  32. KLFriendChatItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  33. ---@param parent UIKmlLuaControl
  34. function KLFriendChatItemView:Init(parent)
  35. self:InitRoot(parent,kmlPath,KLFriendChatItemView.content)
  36. end
  37. return KLFriendChatItemView