12345678910111213141516 |
- ---@class KLTradeUnionBuyPanelView:UIKmlLuaViewBase
- ---@field btn_close UIKmlLuaControl
- ---@field img_coin_icon UIKmlLuaControl
- ---@field txt_price UIKmlLuaControl
- ---@field btn_buy UIKmlLuaControl
- local KLTradeUnionBuyPanelView = {}
- setmetatable(KLTradeUnionBuyPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Trade/Panel/KLTradeUnionBuy/KLTradeUnionBuyPanelKml'
- KLTradeUnionBuyPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLTradeUnionBuyPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLTradeUnionBuyPanelView.content)
- end
- return KLTradeUnionBuyPanelView
|