Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want a ListView to behave like this:

With mouse Input:

  • Left Click -> Item click event handler gets executed, but should not display it as "selected"
  • Right Click -> Item gets selected

With touch Input:

  • Single Tap -> equivalent to left click
  • Swipe Down -> equivalent to right click

I have played around with various of the events and settings but cant seem to get it to work right.

share|improve this question

2 Answers

up vote 1 down vote accepted

In other words, you want your listview to behave like the Windows Start screen? This one was brutal for me to figure out - the mouse part was easy, but the touch part not so much. The solution turns out to be pretty easy. You just have to enable the right options for your listview. Here's the xaml for mine:

<ListView
        x:Name="itemListView"
        SelectionMode="Extended"
        IsSwipeEnabled="True"
        IsItemClickEnabled="True"
        ItemClick="ItemView_ItemClick"
        />

Sorry, I haven't figured how to get code to highlight in StackOverflow yet.

share|improve this answer
In other words, set IsSwipeEnabled to True? Lol, that's pretty easy :) – Joey Mar 27 at 8:39
1  
@Jase - The description from MSDN for IsSwipeEnabled reads: "Gets or sets a value that indicates whether the view supports discrete input processing for a swipe interaction." What does that really mean? I can laugh about it now, but it took me a few weeks to figure out. Easier for some people than others I suppose :) – chue x Mar 27 at 12:09
I agree. I was just a bit amused because I thought it would be way more complicated to have swipe :) – Joey Mar 27 at 12:50

This could help you with the mouseclicks

 private void MainForm_MouseDown(object sender, MouseEventArgs e)
    {
        if (e.Button == MouseButtons.Left)
            method()
        if (e.Button == MouseButtons.Right)
            set selection = false
            method()
    }

and for the handle of the touch i hope this helps

http://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh465387.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.