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