NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/UI/UIBinder/UIScrollNoticeBinder.cs

26 lines
613 B
C#

using System.Collections;
using System.Collections.Generic;
using TMPro;
using Framework;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.UIElements;
using Button = UnityEngine.UI.Button;
using Image = UnityEngine.UI.Image;
using Toggle = UnityEngine.UI.Toggle;
using ScrollView = PhxhSDK.PhxhScrollView;
public class UIScrollNoticeBinder
{
public static void GetComponents(UIScrollNoticeController window)
{
window.Text_Content = window.GetComponent<TMP_Text>("Notice/Text_Content");
}
/****** 定义变量语句 ******
public TMP_Text Text_Content;
****** End ******/
}