1234567891011121314151617181920212223242526272829 |
- ---@class KLSalesTipsPanelView:UIKmlLuaViewBase
- ---@field btn_close UIKmlLuaControl
- ---@field sales_panel UIKmlLuaControl
- ---@field img_16 UIKmlLuaControl
- ---@field panel_17 UIKmlLuaControl
- ---@field text_18 UIKmlLuaControl
- ---@field txt_number UIKmlLuaControl
- ---@field number_minus UIKmlLuaControl
- ---@field number_add UIKmlLuaControl
- ---@field text_21 UIKmlLuaControl
- ---@field txt_price_unit UIKmlLuaControl
- ---@field img_coin_unit UIKmlLuaControl
- ---@field text_25 UIKmlLuaControl
- ---@field img_26 UIKmlLuaControl
- ---@field img_coin_total UIKmlLuaControl
- ---@field txt_price_total UIKmlLuaControl
- ---@field price_slider UIKmlLuaControl
- ---@field btn UIKmlLuaControl
- local KLSalesTipsPanelView = {}
- setmetatable(KLSalesTipsPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Trade/Panel/KLSalesTips/KLSalesTipsPanelKml'
- KLSalesTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLSalesTipsPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLSalesTipsPanelView.content)
- end
- return KLSalesTipsPanelView
|