1234567891011121314151617181920212223242526272829303132333435363738394041 |
- ---@class KLMailPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field img_367 UIKmlLuaControl
- ---@field img_368 UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- ---@field left_panel UIKmlLuaControl
- ---@field received_mail_list_panel UIKmlLuaControl
- ---@field img_372 UIKmlLuaControl
- ---@field scrollview_373 UIKmlLuaControl
- ---@field mail_grid UIKmlLuaControl
- ---@field mail_data_list UIKmlLuaControl
- ---@field get_all_btn UIKmlLuaControl
- ---@field del_all_btn UIKmlLuaControl
- ---@field mail_content_rt UIKmlLuaControl
- ---@field content_time UIKmlLuaControl
- ---@field received_mail_detail_panel UIKmlLuaControl
- ---@field content_title_bg UIKmlLuaControl
- ---@field content_title UIKmlLuaControl
- ---@field content_small_title UIKmlLuaControl
- ---@field detail_desc_scroll UIKmlLuaControl
- ---@field detail_desc_layout UIKmlLuaControl
- ---@field content_text UIKmlLuaControl
- ---@field received_attachment UIKmlLuaControl
- ---@field text_391 UIKmlLuaControl
- ---@field scrollview_392 UIKmlLuaControl
- ---@field items_list UIKmlLuaControl
- ---@field detail_btn UIKmlLuaControl
- ---@field del_btn UIKmlLuaControl
- ---@field des_btn UIKmlLuaControl
- ---@field null_bg UIKmlLuaControl
- local KLMailPanelView = {}
- setmetatable(KLMailPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Mail/Panel/KLMail/KLMailPanelKml'
- KLMailPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLMailPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLMailPanelView.content)
- end
- return KLMailPanelView
|