1234567891011121314151617181920212223242526272829303132 |
- ---@class KLCalcPanelView:UIKmlLuaViewBase
- ---@field UICalcPanel UIKmlLuaControl
- ---@field CloseBtn UIKmlLuaControl
- ---@field firstButton UIKmlLuaControl
- ---@field twoButton UIKmlLuaControl
- ---@field threeButton UIKmlLuaControl
- ---@field fourButton UIKmlLuaControl
- ---@field fiveButton UIKmlLuaControl
- ---@field sixButton UIKmlLuaControl
- ---@field sevenButton UIKmlLuaControl
- ---@field eightButton UIKmlLuaControl
- ---@field nineButton UIKmlLuaControl
- ---@field zeroButton UIKmlLuaControl
- ---@field undoButton UIKmlLuaControl
- ---@field sureButton UIKmlLuaControl
- ---@field intro UIKmlLuaControl
- ---@field num UIKmlLuaControl
- ---@field panel1 UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field img3 UIKmlLuaControl
- ---@field img4 UIKmlLuaControl
- local KLCalcPanelView = {}
- setmetatable(KLCalcPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Common/Panel/KLCalc/KLCalcPanelKml'
- KLCalcPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLCalcPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLCalcPanelView.content)
- end
- return KLCalcPanelView
|