KLMailPanelView.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ---@class KLMailPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field img_367 UIKmlLuaControl
  4. ---@field img_368 UIKmlLuaControl
  5. ---@field closeBtn UIKmlLuaControl
  6. ---@field left_panel UIKmlLuaControl
  7. ---@field received_mail_list_panel UIKmlLuaControl
  8. ---@field img_372 UIKmlLuaControl
  9. ---@field scrollview_373 UIKmlLuaControl
  10. ---@field mail_grid UIKmlLuaControl
  11. ---@field mail_data_list UIKmlLuaControl
  12. ---@field get_all_btn UIKmlLuaControl
  13. ---@field del_all_btn UIKmlLuaControl
  14. ---@field mail_content_rt UIKmlLuaControl
  15. ---@field content_time UIKmlLuaControl
  16. ---@field received_mail_detail_panel UIKmlLuaControl
  17. ---@field content_title_bg UIKmlLuaControl
  18. ---@field content_title UIKmlLuaControl
  19. ---@field content_small_title UIKmlLuaControl
  20. ---@field detail_desc_scroll UIKmlLuaControl
  21. ---@field detail_desc_layout UIKmlLuaControl
  22. ---@field content_text UIKmlLuaControl
  23. ---@field received_attachment UIKmlLuaControl
  24. ---@field text_391 UIKmlLuaControl
  25. ---@field scrollview_392 UIKmlLuaControl
  26. ---@field items_list UIKmlLuaControl
  27. ---@field detail_btn UIKmlLuaControl
  28. ---@field del_btn UIKmlLuaControl
  29. ---@field des_btn UIKmlLuaControl
  30. ---@field null_bg UIKmlLuaControl
  31. local KLMailPanelView = {}
  32. setmetatable(KLMailPanelView,UIKmlLuaViewBase)
  33. local kmlPath = 'dev/ui/Mail/Panel/KLMail/KLMailPanelKml'
  34. KLMailPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  35. ---@param parent UIKmlLuaControl
  36. function KLMailPanelView:Init(parent)
  37. self:InitRoot(parent,kmlPath,KLMailPanelView.content)
  38. end
  39. return KLMailPanelView