KLSalesTipsPanelView.lua 1.1 KB

1234567891011121314151617181920212223242526272829
  1. ---@class KLSalesTipsPanelView:UIKmlLuaViewBase
  2. ---@field btn_close UIKmlLuaControl
  3. ---@field sales_panel UIKmlLuaControl
  4. ---@field img_16 UIKmlLuaControl
  5. ---@field panel_17 UIKmlLuaControl
  6. ---@field text_18 UIKmlLuaControl
  7. ---@field txt_number UIKmlLuaControl
  8. ---@field number_minus UIKmlLuaControl
  9. ---@field number_add UIKmlLuaControl
  10. ---@field text_21 UIKmlLuaControl
  11. ---@field txt_price_unit UIKmlLuaControl
  12. ---@field img_coin_unit UIKmlLuaControl
  13. ---@field text_25 UIKmlLuaControl
  14. ---@field img_26 UIKmlLuaControl
  15. ---@field img_coin_total UIKmlLuaControl
  16. ---@field txt_price_total UIKmlLuaControl
  17. ---@field price_slider UIKmlLuaControl
  18. ---@field btn UIKmlLuaControl
  19. local KLSalesTipsPanelView = {}
  20. setmetatable(KLSalesTipsPanelView,UIKmlLuaViewBase)
  21. local kmlPath = 'dev/outui/Trade/Panel/KLSalesTips/KLSalesTipsPanelKml'
  22. KLSalesTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  23. ---@param parent UIKmlLuaControl
  24. function KLSalesTipsPanelView:Init(parent)
  25. self:InitRoot(parent,kmlPath,KLSalesTipsPanelView.content)
  26. end
  27. return KLSalesTipsPanelView