我正在尝试将将错误消息返回到错误处理网页的api调用重定向,但到目前为止,它仍无法正常工作。我正在使用.NET 4.7。
我尝试遵循example for error handling,但是没有用。我什至尝试使用了我知道应该可以正常工作的网页:
public void NewsList_Selected(Object sender, SelectedItemChangedEventArgs e)
{
var a = e.SelectedItem as NewsEntry;
var b = from c in newsEntries
where (a == c)
select c;
foreach(NewsEntry d in b)
{
d.Text = d.TextFull;
}
// Below is my update/refresh thing
NewsList.ItemsSource = null;
NewsList.ItemsSource = newsEntries;
}