1234567891011121314151617181920212223 |
- ---@class KLTradeHomePanelView:UIKmlLuaViewBase
- ---@field scrollview_catalogue UIKmlLuaControl
- ---@field datalist_goods UIKmlLuaControl
- ---@field btn_filter_level UIKmlLuaControl
- ---@field btn_sort UIKmlLuaControl
- ---@field btn_filter_career UIKmlLuaControl
- ---@field btn_filter_quality UIKmlLuaControl
- ---@field dropdown_list_level UIKmlLuaControl
- ---@field dropdown_list_order UIKmlLuaControl
- ---@field dropdown_list_career UIKmlLuaControl
- ---@field dropdown_list_quality UIKmlLuaControl
- ---@field btn_dropdown_mask UIKmlLuaControl
- local KLTradeHomePanelView = {}
- setmetatable(KLTradeHomePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Trade/Panel/KLTradeHome/KLTradeHomePanelKml'
- KLTradeHomePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLTradeHomePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLTradeHomePanelView.content)
- end
- return KLTradeHomePanelView
|