1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using Fort23.Core;
- using Fort23.UTool;
- using UnityEngine.UI;
- using UnityEngine;
- using System.Collections.Generic;
- namespace Fort23.Mono
- {
- public partial class WidgetItem
- {
- #region 自定义数据
- private Button _btnClick;
- public Button btnClick
- {
- get{
- if (_btnClick == null)
- {
- _btnClick = GetUIUnit<Button>("btnClick");
- }
- return _btnClick;
- }
- }
- private MyImage _bg;
- public MyImage bg
- {
- get{
- if (_bg == null)
- {
- _bg = GetUIUnit<MyImage>("bg");
- }
- return _bg;
- }
- }
- private MyImage _icon;
- public MyImage icon
- {
- get{
- if (_icon == null)
- {
- _icon = GetUIUnit<MyImage>("icon");
- }
- return _icon;
- }
- }
- private Text _Text_Count;
- public Text Text_Count
- {
- get{
- if (_Text_Count == null)
- {
- _Text_Count = GetUIUnit<Text>("Text_Count");
- }
- return _Text_Count;
- }
- }
- #endregion 自定义数据结束
- public override async CTask SetUIGameObject(GameObject gObjectPoolInterface)
- {
- await base.SetUIGameObject(gObjectPoolInterface);
- Init();
- }
- }
- }
|