12345678910111213141516171819202122232425262728293031323334353637383940 |
- ---@class KLUIMonthCardPanelView:UIKmlLuaViewBase
- ---@field img1 UIKmlLuaControl
- ---@field UI UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field item_model UIKmlLuaControl
- ---@field GoTripleEarningBtn UIKmlLuaControl
- ---@field img3 UIKmlLuaControl
- ---@field img4 UIKmlLuaControl
- ---@field TimeText UIKmlLuaControl
- ---@field img6 UIKmlLuaControl
- ---@field gridview UIKmlLuaControl
- ---@field chat_Btn UIKmlLuaControl
- ---@field tradeLine_Btn UIKmlLuaControl
- ---@field TripleEarningsBtn UIKmlLuaControl
- ---@field auto_pickUpBtn UIKmlLuaControl
- ---@field auto_recyBtn UIKmlLuaControl
- ---@field ex_privilegeBtn UIKmlLuaControl
- ---@field text1 UIKmlLuaControl
- ---@field inputText UIKmlLuaControl
- ---@field Reduce_btn UIKmlLuaControl
- ---@field Add_Btn UIKmlLuaControl
- ---@field Buy_countText UIKmlLuaControl
- ---@field monthCardBuy_Btn UIKmlLuaControl
- ---@field daliyCardBuy_btn UIKmlLuaControl
- ---@field text2 UIKmlLuaControl
- ---@field LimitCount UIKmlLuaControl
- ---@field Help_Btn UIKmlLuaControl
- ---@field CloseBtn UIKmlLuaControl
- ---@field text_cost_tips UIKmlLuaControl
- local KLUIMonthCardPanelView = {}
- setmetatable(KLUIMonthCardPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/MonthCard/Panel/KLUIMonthCard/KLUIMonthCardPanelKml'
- KLUIMonthCardPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIMonthCardPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIMonthCardPanelView.content)
- end
- return KLUIMonthCardPanelView
|