123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- ---@class KLUnionInfoPanelView:UIKmlLuaViewBase
- ---@field newbg UIKmlLuaControl
- ---@field prefab_13 UIKmlLuaControl
- ---@field CloseButton UIKmlLuaControl
- ---@field img_bgBg UIKmlLuaControl
- ---@field nameDeco UIKmlLuaControl
- ---@field changeUnionNameBtn UIKmlLuaControl
- ---@field bg2 UIKmlLuaControl
- ---@field peopleCountValue UIKmlLuaControl
- ---@field btn_Election UIKmlLuaControl
- ---@field BGInner UIKmlLuaControl
- ---@field btn_Replace UIKmlLuaControl
- ---@field btn_Impeach UIKmlLuaControl
- ---@field flagImage UIKmlLuaControl
- ---@field warAllianceNameInput UIKmlLuaControl
- ---@field cost_txt_count UIKmlLuaControl
- ---@field unionName UIKmlLuaControl
- ---@field changeAnnoyBtn UIKmlLuaControl
- ---@field noticeInput UIKmlLuaControl
- ---@field btn_cancel UIKmlLuaControl
- ---@field changeFlagBtn UIKmlLuaControl
- ---@field levelValue UIKmlLuaControl
- ---@field inexpValue UIKmlLuaControl
- ---@field inexpAddButton UIKmlLuaControl
- ---@field inMoneyValue UIKmlLuaControl
- ---@field bossValue UIKmlLuaControl
- ---@field inUnionAnnoy UIKmlLuaControl
- ---@field inGrade UIKmlLuaControl
- ---@field inMemberState UIKmlLuaControl
- ---@field unionNameModify UIKmlLuaControl
- ---@field btn_panel_name_yes UIKmlLuaControl
- ---@field btn_panel_name_no UIKmlLuaControl
- ---@field panel_report UIKmlLuaControl
- ---@field btn_panel_report_yes UIKmlLuaControl
- ---@field btn_panel_report_no UIKmlLuaControl
- ---@field inMoneyAddButton UIKmlLuaControl
- ---@field nameMask UIKmlLuaControl
- ---@field reportMask UIKmlLuaControl
- ---@field panel_fund UIKmlLuaControl
- ---@field result_fund UIKmlLuaControl
- ---@field fundInput UIKmlLuaControl
- ---@field btn_donate UIKmlLuaControl
- ---@field exitButton UIKmlLuaControl
- ---@field btn_3DItem UIKmlLuaControl
- ---@field cost_item UIKmlLuaControl
- ---@field flag_img UIKmlLuaControl
- local KLUnionInfoPanelView = {}
- setmetatable(KLUnionInfoPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Union/Panel/KLUnionInfo/KLUnionInfoPanelKml'
- KLUnionInfoPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUnionInfoPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUnionInfoPanelView.content)
- end
- return KLUnionInfoPanelView
|