123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- ---@class KLUISystemLeftPanelView:UIKmlLuaViewBase
- ---@field foldBtn UIKmlLuaControl
- ---@field expandBtn UIKmlLuaControl
- ---@field bagBtn UIKmlLuaControl
- ---@field maxBagTips UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field maxTipsCloseBtn UIKmlLuaControl
- ---@field notice UIKmlLuaControl
- ---@field notice1 UIKmlLuaControl
- ---@field equipRecycleBtn UIKmlLuaControl
- ---@field autoRecycleBtn UIKmlLuaControl
- ---@field notNoticeToggle UIKmlLuaControl
- ---@field notNoticeToggleText UIKmlLuaControl
- ---@field arrow UIKmlLuaControl
- ---@field hookRoot UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- ---@field hookBtn UIKmlLuaControl
- ---@field autoHookIconContainer UIKmlLuaControl
- ---@field autoMaxIcon UIKmlLuaControl
- ---@field autoMinIcon UIKmlLuaControl
- ---@field autoTxtIcon UIKmlLuaControl
- ---@field btn_hook_out UIKmlLuaControl
- ---@field img_new_hook UIKmlLuaControl
- ---@field autoHookIconContainer_2 UIKmlLuaControl
- ---@field img_auto_2_close UIKmlLuaControl
- ---@field autoMaxIcon_2 UIKmlLuaControl
- ---@field autoMinIcon_2 UIKmlLuaControl
- ---@field autoTxtIcon_2 UIKmlLuaControl
- ---@field btn_patrol UIKmlLuaControl
- ---@field btn_situ UIKmlLuaControl
- ---@field btn_offline UIKmlLuaControl
- ---@field btn_hook_in UIKmlLuaControl
- ---@field systemArea UIKmlLuaControl
- ---@field systemMenu UIKmlLuaControl
- ---@field shapeShiftRoot UIKmlLuaControl
- ---@field img_shift_bg UIKmlLuaControl
- ---@field layout_37 UIKmlLuaControl
- ---@field btn_shift_1 UIKmlLuaControl
- ---@field img_shift_icon_1 UIKmlLuaControl
- ---@field Img_cdTime_1 UIKmlLuaControl
- ---@field btn_shift_2 UIKmlLuaControl
- ---@field img_shift_icon_2 UIKmlLuaControl
- ---@field Img_cdTime_2 UIKmlLuaControl
- ---@field btn_shift_3 UIKmlLuaControl
- ---@field img_shift_icon_3 UIKmlLuaControl
- ---@field Img_cdTime_3 UIKmlLuaControl
- ---@field btn_shift UIKmlLuaControl
- ---@field btn_shift_cancel UIKmlLuaControl
- ---@field circlebar_cancel UIKmlLuaControl
- local KLUISystemLeftPanelView = {}
- setmetatable(KLUISystemLeftPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/MainUI/Panel/KLUISystemLeft/KLUISystemLeftPanelKml'
- KLUISystemLeftPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUISystemLeftPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUISystemLeftPanelView.content)
- end
- return KLUISystemLeftPanelView
|