123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using Fort23.Core;
- using Fort23.UTool;
- using UnityEngine.UI;
- using UnityEngine;
- using System.Collections.Generic;
- namespace Fort23.Mono
- {
- public partial class BattleSettlementPanel
- {
- #region 自定义数据
- private Button _Button_ok;
- public Button Button_ok
- {
- get{
- if (_Button_ok == null)
- {
- _Button_ok = GetUIUnit<Button>("Button_ok");
- }
- return _Button_ok;
- }
- }
- private Text _Text_Desc;
- public Text Text_Desc
- {
- get{
- if (_Text_Desc == null)
- {
- _Text_Desc = GetUIUnit<Text>("Text_Desc");
- }
- return _Text_Desc;
- }
- }
- private Text _Text_Settlement;
- public Text Text_Settlement
- {
- get{
- if (_Text_Settlement == null)
- {
- _Text_Settlement = GetUIUnit<Text>("Text_Settlement");
- }
- return _Text_Settlement;
- }
- }
- #endregion 自定义数据结束
- public override async CTask SetUIGameObject(GameObject gObjectPoolInterface)
- {
- await base.SetUIGameObject(gObjectPoolInterface);
- Init();
- }
- }
- }
|