123456789101112131415161718192021222324252627282930313233 |
- using System;
- using XGame.Framework.UI;
- namespace FL.FGUI
- {
-
-
-
-
- public partial class CommonTipsItemCtrl : UIController<CommonTipsItemVM>
- {
- protected override void OnEnable(object intent)
- {
- }
- protected override void OnDisable()
- {
- }
- public void ShowTips(string tips, Action onComplated)
- {
- VM.TipsLabel.text = tips;
- VM.MoveClip.Play(() =>
- {
- onComplated.SafeInvoke();
- });
- }
- }
- }
|