12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- ---@class KLFirstChargePanelView:UIKmlLuaViewBase
- ---@field UIFirstChargePanel UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field btn_Close UIKmlLuaControl
- ---@field font_ad UIKmlLuaControl
- ---@field font_ad2 UIKmlLuaControl
- ---@field font_ad3 UIKmlLuaControl
- ---@field font_advertising UIKmlLuaControl
- ---@field bg1 UIKmlLuaControl
- ---@field Image1 UIKmlLuaControl
- ---@field RebateText UIKmlLuaControl
- ---@field model_image UIKmlLuaControl
- ---@field Model_item UIKmlLuaControl
- ---@field img_amount UIKmlLuaControl
- ---@field number UIKmlLuaControl
- ---@field panel_68 UIKmlLuaControl
- ---@field img_69 UIKmlLuaControl
- ---@field img_70 UIKmlLuaControl
- ---@field img_71 UIKmlLuaControl
- ---@field img_72 UIKmlLuaControl
- ---@field text_recharge_num UIKmlLuaControl
- ---@field text_reward_num UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- ---@field btn_charge UIKmlLuaControl
- ---@field GetText UIKmlLuaControl
- ---@field ChargeText UIKmlLuaControl
- ---@field hasReceive_text UIKmlLuaControl
- ---@field btn_tips UIKmlLuaControl
- ---@field bg_content UIKmlLuaControl
- ---@field scrollviewItemList UIKmlLuaControl
- ---@field layout2 UIKmlLuaControl
- ---@field list_item UIKmlLuaControl
- ---@field Viewport UIKmlLuaControl
- ---@field Text_accumulation UIKmlLuaControl
- ---@field Text1 UIKmlLuaControl
- ---@field Text_tips UIKmlLuaControl
- ---@field Text11 UIKmlLuaControl
- ---@field Imager11 UIKmlLuaControl
- ---@field ToggleGroup UIKmlLuaControl
- ---@field panel_day3 UIKmlLuaControl
- ---@field panel_day2 UIKmlLuaControl
- ---@field panel_day1 UIKmlLuaControl
- ---@field togText_day1 UIKmlLuaControl
- ---@field red1 UIKmlLuaControl
- ---@field togText_day2 UIKmlLuaControl
- ---@field red2 UIKmlLuaControl
- ---@field togText_day3 UIKmlLuaControl
- ---@field red3 UIKmlLuaControl
- ---@field Text3 UIKmlLuaControl
- ---@field ShowInfoText UIKmlLuaControl
- ---@field img_text4 UIKmlLuaControl
- ---@field img_text1 UIKmlLuaControl
- local KLFirstChargePanelView = {}
- setmetatable(KLFirstChargePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/FirstCharge/Panel/KLFirstCharge/KLFirstChargePanelKml'
- KLFirstChargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLFirstChargePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLFirstChargePanelView.content)
- end
- return KLFirstChargePanelView
|