使用DataTransferManager showshareuri仅打开Whatsapp和Messaging应用程序

时间:2016-01-25 06:35:12

标签: windows-phone-8.1

我正在使用以下代码打开共享UI。它会打开所有可用的共享文本共享应用。有什么办法可以将这些共享过滤到Messaging和Whatsapp应用程序吗?

   void dataTransferManager_DataRequested(DataTransferManager sender, DataRequestedEventArgs e)
    {
        DataRequest request = e.Request;
        request.Data.Properties.Title = "the title";
        request.Data.Properties.Description = "description";
        request.Data.Properties.ApplicationName = "Messeging";
        request.Data.SetText(shareText);
    }

1 个答案:

答案 0 :(得分:0)

不,这是预期的行为,所有可以阅读文字的应用都会显示出来。