本文介绍了共享flipview的选定部分的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的windows 8 metro风格应用程序中我使用flipview控件来显示rss feed的一些细节。有10-12个feeds.I我在flipview中显示了feed的内容。现在我想要实现共享,以便用户可以分享他从flipview中选择的任何
。当我尝试这样做时,我只能分享整个内容而不是选择的部分。所以我应该做什么。 。







var item =( FeedItem this 。flipView.SelectedItem;


这里我得到翻转视图的全部内容..但我想分享用户选择的内容..


解决方案

In my windows 8 metro style application I am using a flipview control to display some details of rss feeds.There are 10-12 feeds.I am displaying the content of the feeds in the flipview.Now I want to implement sharing so that The user can share whatever he has selected from the flipview..When I m tryng to do this I am only able to share the whole content not the selected part.so what should I need to do..

varitem = (FeedItem)this.flipView.SelectedItem;

Here I am getting the whole content of the flip view..But I want to share just what user has selected..

解决方案


这篇关于共享flipview的选定部分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 02:56