KLIUItemTipsOtherPanelView.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ---@class KLIUItemTipsOtherPanelView:UIKmlLuaViewBase
  2. ---@field background_close UIKmlLuaControl
  3. ---@field panel_bg UIKmlLuaControl
  4. ---@field item_head UIKmlLuaControl
  5. ---@field item_img UIKmlLuaControl
  6. ---@field item_base_info UIKmlLuaControl
  7. ---@field layout_76 UIKmlLuaControl
  8. ---@field item_name UIKmlLuaControl
  9. ---@field item_type UIKmlLuaControl
  10. ---@field equip_deal UIKmlLuaControl
  11. ---@field 装备状态img UIKmlLuaControl
  12. ---@field item_limited UIKmlLuaControl
  13. ---@field item_limited_info UIKmlLuaControl
  14. ---@field item_shelves_bg UIKmlLuaControl
  15. ---@field item_shelves UIKmlLuaControl
  16. ---@field view_info UIKmlLuaControl
  17. ---@field base_info UIKmlLuaControl
  18. ---@field top_text UIKmlLuaControl
  19. ---@field mid_text UIKmlLuaControl
  20. ---@field bottom_text UIKmlLuaControl
  21. ---@field bag_root UIKmlLuaControl
  22. ---@field left_btn UIKmlLuaControl
  23. ---@field left_btn_content UIKmlLuaControl
  24. ---@field 属性_left_layout UIKmlLuaControl
  25. ---@field left_data_list UIKmlLuaControl
  26. ---@field right_btn UIKmlLuaControl
  27. ---@field right_btn_content UIKmlLuaControl
  28. ---@field 属性_right_layout UIKmlLuaControl
  29. ---@field right_data_list UIKmlLuaControl
  30. ---@field item_button UIKmlLuaControl
  31. ---@field put_or_out UIKmlLuaControl
  32. ---@field put_or_out_t UIKmlLuaControl
  33. ---@field pills_put UIKmlLuaControl
  34. ---@field text_100 UIKmlLuaControl
  35. ---@field mail_attachment UIKmlLuaControl
  36. ---@field text_102 UIKmlLuaControl
  37. local KLIUItemTipsOtherPanelView = {}
  38. setmetatable(KLIUItemTipsOtherPanelView,UIKmlLuaViewBase)
  39. local kmlPath = 'dev/ui/Tips/Panel/KLIUItemTipsOther/KLIUItemTipsOtherPanelKml'
  40. KLIUItemTipsOtherPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  41. ---@param parent UIKmlLuaControl
  42. function KLIUItemTipsOtherPanelView:Init(parent)
  43. self:InitRoot(parent,kmlPath,KLIUItemTipsOtherPanelView.content)
  44. end
  45. return KLIUItemTipsOtherPanelView