本文介绍了如何使用我的应用程序列表打开市场?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望市场任务显示我的应用程序列表.

I want marketplace task to show the list of my applications.

我尝试使用下一个代码:

I have tried to use the next code:

var task = new MarketplaceSearchTask(){	SearchTerms = "BS"};task.Show();

但是它显示了很多无效的应用程序

but it shows lot of invalid applications


推荐答案

var search = new MarketplaceSearchTask();
search.SearchTerms = "bytemarq";
search.ContentType = MarketplaceContentType.Applications;
search.Show();


希望对您有所帮助.


Hope it helps.


这篇关于如何使用我的应用程序列表打开市场?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 16:39