一、Notification通知(方法1)
这种方法适合应用在弹出窗口,然后在通知中放置Content,然后在 public INotification Notification将该Content拿出来保存。
比如下面,我要将Content保存集合pipList中。
1、先放置数据集合SelectedMorePersons:
SenduNotification senduNotification = new SenduNotification();
senduNotification.Title = "编辑";
senduNotification.Content = SelectedMorePersons;
//弹出窗口
SenduNotificationRequest.Raise(senduNotification, returned =>
{
if (returned != null && returned.Confirmed)
{
//更新数据库