How can I validate the email writing on UWP?

主宰稳场 提交于 2019-12-12 06:50:04

问题


Currently I'm working on an app that requires as mandatory a valid email address for the confirmation and validation of the account.


回答1:


This way..

public void Register(){
    string email = "youremail";

    if (string.IsNullOrWhiteSpace(email) || !Regex.IsMatch(email, @"\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"))
    {
        DialogHelper.ShowToast(string.Empty, "The email is invalid");
        return;
    }

    //Continue with your register logic...
}

DialogService.cs

public class DialogService
{
    public static void ShowToast(string message, string title)
    {
        var notificationXml = ToastNotificationManager.GetTemplateContent(ToastTemplateType.ToastText02);
        var toastElement = notificationXml.GetElementsByTagName("text");
        toastElement[0].AppendChild(notificationXml.CreateTextNode(title));
        toastElement[1].AppendChild(notificationXml.CreateTextNode(message));
        var toastNotification = new ToastNotification(notificationXml);
        ToastNotificationManager.CreateToastNotifier().Show(toastNotification);
    }
}


来源:https://stackoverflow.com/questions/33314285/how-can-i-validate-the-email-writing-on-uwp

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!