Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望允许我的 WP 应用程序用户共享文本(放入此应用程序)以更新他们的 facebook 状态。
我读到它存在一个名为facebook c# sdk的项目,但这个页面是空的!
你知道它是否存在一种简单的方法来实现这一点?
如何使用共享状态任务?
using Microsoft.Phone.Tasks; ... ShareStatusTask shareStatusTask = new ShareStatusTask(); shareStatusTask.Status = "Here's my new status!"; shareStatusTask.Show();