KLTradeUnionBuyPanelView.lua 652 B

12345678910111213141516
  1. ---@class KLTradeUnionBuyPanelView:UIKmlLuaViewBase
  2. ---@field btn_close UIKmlLuaControl
  3. ---@field img_coin_icon UIKmlLuaControl
  4. ---@field txt_price UIKmlLuaControl
  5. ---@field btn_buy UIKmlLuaControl
  6. local KLTradeUnionBuyPanelView = {}
  7. setmetatable(KLTradeUnionBuyPanelView,UIKmlLuaViewBase)
  8. local kmlPath = 'dev/outui/Trade/Panel/KLTradeUnionBuy/KLTradeUnionBuyPanelKml'
  9. KLTradeUnionBuyPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  10. ---@param parent UIKmlLuaControl
  11. function KLTradeUnionBuyPanelView:Init(parent)
  12. self:InitRoot(parent,kmlPath,KLTradeUnionBuyPanelView.content)
  13. end
  14. return KLTradeUnionBuyPanelView