KLUIFruitPanelView.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ---@class KLUIFruitPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field closeButton UIKmlLuaControl
  4. ---@field HelpButton UIKmlLuaControl
  5. ---@field title UIKmlLuaControl
  6. ---@field Fruit UIKmlLuaControl
  7. ---@field FruitBG UIKmlLuaControl
  8. ---@field TextPintInfo UIKmlLuaControl
  9. ---@field FruitAtt UIKmlLuaControl
  10. ---@field FruitAttDataList UIKmlLuaControl
  11. ---@field BtnReset UIKmlLuaControl
  12. ---@field Bag UIKmlLuaControl
  13. ---@field IconTitle UIKmlLuaControl
  14. ---@field TextTitle UIKmlLuaControl
  15. ---@field FruitList UIKmlLuaControl
  16. ---@field gridview16 UIKmlLuaControl
  17. ---@field FruitDataList UIKmlLuaControl
  18. ---@field ResetPanel UIKmlLuaControl
  19. ---@field ClickMask UIKmlLuaControl
  20. ---@field ResetPanel_BG UIKmlLuaControl
  21. ---@field ResetPanel_TextTip UIKmlLuaControl
  22. ---@field ResetPanel_TextTitle UIKmlLuaControl
  23. ---@field ResetPanel_TextPoint UIKmlLuaControl
  24. ---@field ResetPanel_Consum UIKmlLuaControl
  25. ---@field text30 UIKmlLuaControl
  26. ---@field img31 UIKmlLuaControl
  27. ---@field Model UIKmlLuaControl
  28. ---@field ConsumCount UIKmlLuaControl
  29. ---@field ResetPanel_BtnCancel UIKmlLuaControl
  30. ---@field ResetPanel_BtnReset UIKmlLuaControl
  31. ---@field ResetPanel_TextResetTimes UIKmlLuaControl
  32. ---@field ResetPanel_AttScrollview UIKmlLuaControl
  33. ---@field layout2 UIKmlLuaControl
  34. ---@field AttDataList UIKmlLuaControl
  35. ---@field IsOpenCalcUI UIKmlLuaControl
  36. ---@field FeedBackImg UIKmlLuaControl
  37. local KLUIFruitPanelView = {}
  38. setmetatable(KLUIFruitPanelView,UIKmlLuaViewBase)
  39. local kmlPath = 'dev/outui/UIFruit/Panel/KLUIFruit/KLUIFruitPanelKml'
  40. KLUIFruitPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  41. ---@param parent UIKmlLuaControl
  42. function KLUIFruitPanelView:Init(parent)
  43. self:InitRoot(parent,kmlPath,KLUIFruitPanelView.content)
  44. end
  45. return KLUIFruitPanelView