我需要一些帮助。我有这个代码:
Windows.ApplicationModel.Chat.ChatMessageStore store = await Windows.ApplicationModel.Chat.ChatMessageManager.RequestStoreAsync();
var msgList = store.GetMessageReader();
IReadOnlyList<Windows.ApplicationModel.Chat.ChatMessage> a = await msgList.ReadBatchAsync()
我用这个阅读了所有的短信
foreach (var item in a)
{
System.Diagnostics.Debug.WriteLine(item.Body);
}
我怎样才能只阅读未读短信?我的意思是只阅读新短信,然后将状态更改为“已读”。
问题是针对 Uwp Win 10..