123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- ---@class KLUISynthesisPanelView:UIKmlLuaViewBase
- ---@field Mask UIKmlLuaControl
- ---@field Right UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field closeButton UIKmlLuaControl
- ---@field ModelBG UIKmlLuaControl
- ---@field Model UIKmlLuaControl
- ---@field ModelName UIKmlLuaControl
- ---@field ModelDescription UIKmlLuaControl
- ---@field PreviewButton UIKmlLuaControl
- ---@field MaterialTitle UIKmlLuaControl
- ---@field MaterialScrollview UIKmlLuaControl
- ---@field gridview7 UIKmlLuaControl
- ---@field MaterialDataList UIKmlLuaControl
- ---@field SuccessRateText UIKmlLuaControl
- ---@field MaxCountText UIKmlLuaControl
- ---@field SynthesisButton UIKmlLuaControl
- ---@field SynthesisButton_Red UIKmlLuaControl
- ---@field SelectCount UIKmlLuaControl
- ---@field text1 UIKmlLuaControl
- ---@field BtnMinus UIKmlLuaControl
- ---@field Input UIKmlLuaControl
- ---@field BtnAdd UIKmlLuaControl
- ---@field Left UIKmlLuaControl
- ---@field title2 UIKmlLuaControl
- ---@field LeftButtonScrollview UIKmlLuaControl
- ---@field layout2 UIKmlLuaControl
- ---@field LeftButtonDataList UIKmlLuaControl
- ---@field panel1 UIKmlLuaControl
- ---@field Preview UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field scrollview3 UIKmlLuaControl
- ---@field layout4 UIKmlLuaControl
- ---@field PreviewDataList UIKmlLuaControl
- ---@field PreviewCloseButton UIKmlLuaControl
- ---@field Special UIKmlLuaControl
- ---@field SpecialCloseButton UIKmlLuaControl
- ---@field SpecialBG UIKmlLuaControl
- ---@field SelectSpecialButton UIKmlLuaControl
- ---@field SpecialTitleText UIKmlLuaControl
- ---@field SpecialItemScrollview UIKmlLuaControl
- ---@field gridview20 UIKmlLuaControl
- ---@field SpecialItemDataList UIKmlLuaControl
- local KLUISynthesisPanelView = {}
- setmetatable(KLUISynthesisPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/UISynthesis/Panel/KLUISynthesis/KLUISynthesisPanelKml'
- KLUISynthesisPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUISynthesisPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUISynthesisPanelView.content)
- end
- return KLUISynthesisPanelView
|