KLArchangelGrailTipsPanelView.lua 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ---@class KLArchangelGrailTipsPanelView:UIKmlLuaViewBase
  2. ---@field background_close UIKmlLuaControl
  3. ---@field panel_bg UIKmlLuaControl
  4. ---@field top UIKmlLuaControl
  5. ---@field item_name UIKmlLuaControl
  6. ---@field item5 UIKmlLuaControl
  7. ---@field layout6 UIKmlLuaControl
  8. ---@field bing_text UIKmlLuaControl
  9. ---@field score_text UIKmlLuaControl
  10. ---@field rant_text UIKmlLuaControl
  11. ---@field quality_text UIKmlLuaControl
  12. ---@field fusion_pos UIKmlLuaControl
  13. ---@field middle UIKmlLuaControl
  14. ---@field info_view UIKmlLuaControl
  15. ---@field all_list_layout UIKmlLuaControl
  16. ---@field all_info_data UIKmlLuaControl
  17. ---@field equippaneltop_bottom UIKmlLuaControl
  18. ---@field put_or_out UIKmlLuaControl
  19. ---@field put_or_out_t UIKmlLuaControl
  20. ---@field bag_root UIKmlLuaControl
  21. ---@field left_btn UIKmlLuaControl
  22. ---@field left_btn_content UIKmlLuaControl
  23. ---@field 属性_left_layout UIKmlLuaControl
  24. ---@field left_data_list UIKmlLuaControl
  25. ---@field right_btn UIKmlLuaControl
  26. ---@field right_btn_content UIKmlLuaControl
  27. ---@field 属性_right_layout UIKmlLuaControl
  28. ---@field right_data_list UIKmlLuaControl
  29. ---@field equip_root UIKmlLuaControl
  30. ---@field duanzaobtn UIKmlLuaControl
  31. ---@field tuoxiabtn UIKmlLuaControl
  32. ---@field shengjibtn UIKmlLuaControl
  33. ---@field mail_attachment UIKmlLuaControl
  34. ---@field text_1451 UIKmlLuaControl
  35. ---@field 镶嵌_btn UIKmlLuaControl
  36. ---@field text_1453 UIKmlLuaControl
  37. ---@field 镶嵌卸下_btn UIKmlLuaControl
  38. ---@field text_1455 UIKmlLuaControl
  39. ---@field 叠加_btn UIKmlLuaControl
  40. ---@field text_1457 UIKmlLuaControl
  41. local KLArchangelGrailTipsPanelView = {}
  42. setmetatable(KLArchangelGrailTipsPanelView,UIKmlLuaViewBase)
  43. local kmlPath = 'dev/outui/Archangel/Panel/KLArchangelGrailTips/KLArchangelGrailTipsPanelKml'
  44. KLArchangelGrailTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  45. ---@param parent UIKmlLuaControl
  46. function KLArchangelGrailTipsPanelView:Init(parent)
  47. self:InitRoot(parent,kmlPath,KLArchangelGrailTipsPanelView.content)
  48. end
  49. return KLArchangelGrailTipsPanelView