私は自分のxmlを読みたいのですが、テキストボックスのテキストがxmlのタグと同じである場合、他のページに移動したいと思っています。
私のコードは:
StorageFolder storageFolder = Package.Current.InstalledLocation;
StorageFile storageFile = await storageFolder.GetFileAsync("Registeduser.xml");
string xml = await FileIO.ReadTextAsync(storageFile, Windows.Storage.Streams.UnicodeEncoding.Utf8);
var doc = XDocument.Parse(xml);
StorageFolder pastaxml = Package.Current.InstalledLocation;
pastaxml = await pastaxml.GetFolderAsync("users\\1101046102\\xml\\");
StorageFile login = await pastaxml.GetFileAsync("info.xml");
string xmllogin = await FileIO.ReadTextAsync(login, Windows.Storage.Streams.UnicodeEncoding.Utf8);
var xdoc = XDocument.Parse(xmllogin);
var rootemail = xdoc.Root;
var rootNode = doc.Root;
foreach (var child in rootNode.Descendants("user"))
{
//Login is a class
var objLogin = new Login
{
id = child.Element("id").Value,
Email=child.Element("email").Value
};
}
foreach (var logemail in rootemail.Descendants("info"))
{
//Info is a class
var email = new Info
{
Email = logemail.Element("email").Value
};
Info info = new Info();
if (txtemail.Text == info.Email.ToString())
{
this.Frame.Navigate(typeof(DashBoard));
}
else
{
MessageBox("Email ou password incorreta");
}
}
そしてxmlは次のとおりです。
<info>
<id>1101046102</id>
<email>email@hotmail.com</email>
</info>
と:
<?xml version="1.0" encoding="utf-8" ?>
<registeredUser>
<user>
<id>1101046102</id>
<email>email@hotmail.com</email>
</user>
</registeredUser>
私が望むのは、registeduser.xml の電子メールと info.xml の電子メールを比較することだけです。プログラムをデバッドしてクリックして次のページに移動すると、プログラムは何もしません。私は何を間違っていますか?