1234567891011121314151617181920 |
- ---@class KLTradeBuyPanelView:UIKmlLuaViewBase
- ---@field txt_price UIKmlLuaControl
- ---@field btn_buy UIKmlLuaControl
- ---@field img_coin_icon UIKmlLuaControl
- ---@field btn_close UIKmlLuaControl
- ---@field group_input_count UIKmlLuaControl
- ---@field input_count UIKmlLuaControl
- ---@field btn_minus UIKmlLuaControl
- ---@field btn_add UIKmlLuaControl
- local KLTradeBuyPanelView = {}
- setmetatable(KLTradeBuyPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Trade/Panel/KLTradeBuy/KLTradeBuyPanelKml'
- KLTradeBuyPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLTradeBuyPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLTradeBuyPanelView.content)
- end
- return KLTradeBuyPanelView
|