1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- ---@class KLUIFruitPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field closeButton UIKmlLuaControl
- ---@field HelpButton UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field Fruit UIKmlLuaControl
- ---@field FruitBG UIKmlLuaControl
- ---@field TextPintInfo UIKmlLuaControl
- ---@field FruitAtt UIKmlLuaControl
- ---@field FruitAttDataList UIKmlLuaControl
- ---@field BtnReset UIKmlLuaControl
- ---@field Bag UIKmlLuaControl
- ---@field IconTitle UIKmlLuaControl
- ---@field TextTitle UIKmlLuaControl
- ---@field FruitList UIKmlLuaControl
- ---@field gridview16 UIKmlLuaControl
- ---@field FruitDataList UIKmlLuaControl
- ---@field ResetPanel UIKmlLuaControl
- ---@field ClickMask UIKmlLuaControl
- ---@field ResetPanel_BG UIKmlLuaControl
- ---@field ResetPanel_TextTip UIKmlLuaControl
- ---@field ResetPanel_TextTitle UIKmlLuaControl
- ---@field ResetPanel_TextPoint UIKmlLuaControl
- ---@field ResetPanel_Consum UIKmlLuaControl
- ---@field text30 UIKmlLuaControl
- ---@field img31 UIKmlLuaControl
- ---@field Model UIKmlLuaControl
- ---@field ConsumCount UIKmlLuaControl
- ---@field ResetPanel_BtnCancel UIKmlLuaControl
- ---@field ResetPanel_BtnReset UIKmlLuaControl
- ---@field ResetPanel_TextResetTimes UIKmlLuaControl
- ---@field ResetPanel_AttScrollview UIKmlLuaControl
- ---@field layout2 UIKmlLuaControl
- ---@field AttDataList UIKmlLuaControl
- ---@field IsOpenCalcUI UIKmlLuaControl
- ---@field FeedBackImg UIKmlLuaControl
- local KLUIFruitPanelView = {}
- setmetatable(KLUIFruitPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/UIFruit/Panel/KLUIFruit/KLUIFruitPanelKml'
- KLUIFruitPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIFruitPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIFruitPanelView.content)
- end
- return KLUIFruitPanelView
|