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
23 lines
579 B
using CommunityToolkit.Maui.Views;
|
|
|
|
namespace CircleViewerMaui.Popups
|
|
{
|
|
public partial class NewInvite : Popup
|
|
{
|
|
string _inviteCode;
|
|
private string _authCode;
|
|
public NewInvite(string inviteCode, string authCode)
|
|
{
|
|
_inviteCode = inviteCode;
|
|
_authCode = authCode;
|
|
InitializeComponent();
|
|
lblInviteCode.Text = _inviteCode;
|
|
lblAuthCode.Text = _authCode;
|
|
}
|
|
|
|
private void OnOKButtonClicked(object sender, EventArgs e)
|
|
{
|
|
Close();
|
|
}
|
|
}
|
|
}
|