1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- ---@class KLUIItemTipsPanelView:UIKmlLuaViewBase
- ---@field background_close UIKmlLuaControl
- ---@field panel_bg UIKmlLuaControl
- ---@field item_head UIKmlLuaControl
- ---@field item_img UIKmlLuaControl
- ---@field item_base_info UIKmlLuaControl
- ---@field layout_76 UIKmlLuaControl
- ---@field item_name UIKmlLuaControl
- ---@field item_type UIKmlLuaControl
- ---@field equip_deal UIKmlLuaControl
- ---@field 装备状态img UIKmlLuaControl
- ---@field item_limited UIKmlLuaControl
- ---@field item_limited_info UIKmlLuaControl
- ---@field item_shelves_bg UIKmlLuaControl
- ---@field item_shelves UIKmlLuaControl
- ---@field view_info UIKmlLuaControl
- ---@field base_info UIKmlLuaControl
- ---@field top_text UIKmlLuaControl
- ---@field mid_text UIKmlLuaControl
- ---@field bottom_text UIKmlLuaControl
- ---@field bag_root UIKmlLuaControl
- ---@field left_btn UIKmlLuaControl
- ---@field left_btn_content UIKmlLuaControl
- ---@field 属性_left_layout UIKmlLuaControl
- ---@field left_data_list UIKmlLuaControl
- ---@field right_btn UIKmlLuaControl
- ---@field right_btn_content UIKmlLuaControl
- ---@field 属性_right_layout UIKmlLuaControl
- ---@field right_data_list UIKmlLuaControl
- ---@field item_button UIKmlLuaControl
- ---@field put_or_out UIKmlLuaControl
- ---@field put_or_out_t UIKmlLuaControl
- ---@field pills_put UIKmlLuaControl
- ---@field text_100 UIKmlLuaControl
- ---@field mail_attachment UIKmlLuaControl
- ---@field text_102 UIKmlLuaControl
- local KLUIItemTipsPanelView = {}
- setmetatable(KLUIItemTipsPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Tips/Panel/KLIUItemTips/KLUIItemTipsPanelKml'
- KLUIItemTipsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIItemTipsPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIItemTipsPanelView.content)
- end
- return KLUIItemTipsPanelView
|