HerYuanManSuccessPanel.cs 652 B

123456789101112131415161718192021222324252627282930313233
  1. using System.Collections.Generic;
  2. using Fort23.Core;
  3. namespace Fort23.Mono
  4. {
  5. [UIBinding(prefab = "HerYuanManSuccessPanel" )]
  6. public partial class HerYuanManSuccessPanel : UIPanel
  7. {
  8. private void Init()
  9. {
  10. }
  11. protected override void AddEvent()
  12. {
  13. }
  14. protected override void DelEvent()
  15. {
  16. }
  17. public override void AddButtonEvent()
  18. {
  19. }
  20. public async static CTask<HerYuanManSuccessPanel> OpenPanel()
  21. {
  22. HerYuanManSuccessPanel heroBreakthroughSuccessPanel = await UIManager.Instance.LoadAndOpenPanel<HerYuanManSuccessPanel>(null, UILayer.Top, isFocus: false,isShowBG:true);
  23. return heroBreakthroughSuccessPanel;
  24. }
  25. }
  26. }