12345678910111213141516171819202122232425262728293031323334353637 |
- ---@class KLTradeMainPanelView:UIKmlLuaViewBase
- ---@field img_67 UIKmlLuaControl
- ---@field btn_close UIKmlLuaControl
- ---@field img_69 UIKmlLuaControl
- ---@field toggle_group_home_tab UIKmlLuaControl
- ---@field layout_71 UIKmlLuaControl
- ---@field toggle_trade_home UIKmlLuaControl
- ---@field text_73 UIKmlLuaControl
- ---@field toggle_month_card UIKmlLuaControl
- ---@field text2 UIKmlLuaControl
- ---@field toggle_trade_union UIKmlLuaControl
- ---@field text_75 UIKmlLuaControl
- ---@field toggle_trade_record UIKmlLuaControl
- ---@field text_77 UIKmlLuaControl
- ---@field toggle_trade_my_up UIKmlLuaControl
- ---@field text_79 UIKmlLuaControl
- ---@field img_80 UIKmlLuaControl
- ---@field img_81 UIKmlLuaControl
- ---@field img_82 UIKmlLuaControl
- ---@field img_85 UIKmlLuaControl
- ---@field img_86 UIKmlLuaControl
- ---@field img_87 UIKmlLuaControl
- ---@field txt_qj_count UIKmlLuaControl
- ---@field btn_qj_tip UIKmlLuaControl
- ---@field toggle_trade_CrossServer UIKmlLuaControl
- ---@field text_cost_tips UIKmlLuaControl
- local KLTradeMainPanelView = {}
- setmetatable(KLTradeMainPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Trade/Panel/KLTradeMain/KLTradeMainPanelKml'
- KLTradeMainPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLTradeMainPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLTradeMainPanelView.content)
- end
- return KLTradeMainPanelView
|