ContextMenu with Longlistselector

时间:2013-10-19 14:32:16

标签: c# windows-phone-8 contextmenu longlistselector

我的Windows Phone 8应用程序中有一个longlistselector,我在其中为此创建了源:

List<LonglistSelectorPivot1<ChatroomslistItems>> DataSource1 = LonglistSelectorPivot1<ChatroomslistItems>.CreateGroups(pivot1source,
            System.Threading.Thread.CurrentThread.CurrentUICulture,
            (ChatroomslistItems s) => { return s.ChatRoomName; }, true);
        pivot1List.ItemsSource = pivot1source;

如果某人持有该列表中的元素,我会显示一个ContextMenu。 这里的问题是ContextMenu无论如何都在顶部。我怀疑上面使用的CreateGroups命令。但是如果没有这条线我就无法显示任何东西。

我希望能够在项目上方显示ContextMenu。

0 个答案:

没有答案