Layout_UIUserInfo.ts 727 B

12345678910111213141516171819202122232425262728293031323334353637
  1. import { _decorator, Button, Component, EditBox, Label, Node, Sprite, ToggleContainer } from 'cc';
  2. const { ccclass, property } = _decorator;
  3. @ccclass('Layout_UIUserInfo')
  4. export class Layout_UIUserInfo extends Component {
  5. @property(Button)
  6. btnMaskBg:Button;
  7. @property(Button)
  8. btnClose: Button;
  9. @property(Sprite)
  10. sprHeadImg:Sprite;
  11. @property(Label)
  12. lblName: Label;
  13. @property(Label)
  14. lblId: Label;
  15. @property(Label)
  16. lblGender: Label;
  17. @property(Label)
  18. lblIntroduction: Label;
  19. @property(ToggleContainer)
  20. toggleGenderOptions: ToggleContainer;
  21. @property(Button)
  22. btnIntroductionEdit: Button;
  23. @property(EditBox)
  24. editIntroduction: EditBox;
  25. }