You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
579 B

  1. using CommunityToolkit.Maui.Views;
  2. namespace CircleViewerMaui.Popups
  3. {
  4. public partial class NewInvite : Popup
  5. {
  6. string _inviteCode;
  7. private string _authCode;
  8. public NewInvite(string inviteCode, string authCode)
  9. {
  10. _inviteCode = inviteCode;
  11. _authCode = authCode;
  12. InitializeComponent();
  13. lblInviteCode.Text = _inviteCode;
  14. lblAuthCode.Text = _authCode;
  15. }
  16. private void OnOKButtonClicked(object sender, EventArgs e)
  17. {
  18. Close();
  19. }
  20. }
  21. }