PranticePromptPanel.Designer.cs 850 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using UnityEngine;
  3. using UnityEngine.UI;
  4. using QFramework;
  5. namespace QFramework
  6. {
  7. // Generate Id:7eace54a-3b3b-44a4-9634-f047adfc09a9
  8. public partial class PranticePromptPanel
  9. {
  10. public const string Name = "PranticePromptPanel";
  11. [SerializeField]
  12. public UnityEngine.UI.Button ReselectionBtn;
  13. [SerializeField]
  14. public UnityEngine.UI.Button OpenPrompt;
  15. private PranticePromptPanelData mPrivateData = null;
  16. protected override void ClearUIComponents()
  17. {
  18. ReselectionBtn = null;
  19. OpenPrompt = null;
  20. mData = null;
  21. }
  22. public PranticePromptPanelData Data
  23. {
  24. get
  25. {
  26. return mData;
  27. }
  28. }
  29. PranticePromptPanelData mData
  30. {
  31. get
  32. {
  33. return mPrivateData ?? (mPrivateData = new PranticePromptPanelData());
  34. }
  35. set
  36. {
  37. mUIData = value;
  38. mPrivateData = value;
  39. }
  40. }
  41. }
  42. }