I have a ListView with a specific ItemTemplate, which visually displays the contents of a list of objects. I wanted to allow the user to select such an object by clicking on it, and as a consequence of selecting it, it will be loaded as the application's current object and deleted from the list.

The problem is that the listview doesn't support Click events, so I tried using the SelectionChanged event. Well, this isn't ok as well, because if I click on an item (but without releasing the mouse) and then I move the mouse over another item (while keeping the mouse pressed), it deletes that item as well.

Any suggestions on how I can delete the selected item from the list without triggering additional operations? here's a simplified version of my code (which has the same behaviour):

<Window x:Class="ListViewIssue.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition></RowDefinition>
            <RowDefinition Height="50"></RowDefinition>
        </Grid.RowDefinitions>
        <ListView x:Name="lstNumbers"  SelectionMode="Single"  ScrollViewer.HorizontalScrollBarVisibility="Disabled" SelectionChanged="lstNumbers_SelectionChanged">
            <ListView.ItemTemplate>                
                <DataTemplate>
                    <Grid Width="170" Background="Transparent">                        
                        <TextBlock HorizontalAlignment="Left" Text="{Binding val, Mode=TwoWay}" TextWrapping="Wrap" Margin="3"/>
                    </Grid>
                </DataTemplate>
            </ListView.ItemTemplate>
        </ListView>
        <Button Name="btnAddItem" Grid.Row="1" Click="btnAddItem_Click">Add Item</Button>
    </Grid>
</Window>

and code behind:

public partial class MainWindow : Window
    {
        public class valueClass
        {
            public int val { get; set; }
        }
        private List<valueClass> list;
        private int counter;

        public MainWindow()
        {
            InitializeComponent();
            CreateList();
            DisplayList();
        }

        private void CreateList()
        {
            list = new List<valueClass>();
            counter = 8;
            for (int i = 0; i < counter; i++)
            {
                list.Add(new valueClass() { val = i + 1 });
            }
        }

        private void lstNumbers_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            if (lstNumbers.SelectedIndex != -1)
            {
                list.Remove(lstNumbers.SelectedValue as valueClass);
                DisplayList();
            }
        }

        private void DisplayList()
        {
            this.lstNumbers.ItemsSource = null;
            this.lstNumbers.ItemsSource = list;
        }

        private void btnAddItem_Click(object sender, RoutedEventArgs e)
        {
            list.Add(new valueClass() { val = counter++ + 1 });
            DisplayList();
        }
    }
link|improve this question

67% accept rate
Perhaps you can catch clicks if you set a click handler in the ItemContainerStyle? – Vlad Oct 19 '11 at 13:10
For future reference, an ObserveableCollection is a better source to bind to as anytime you remove/add an item, it'll be reflected in the listview automagically. That way you won't have to unbind and rebind your source to see changes reflected like you did in DisplayList(). Something to consider for next time, or this time, if you wanted to make things easier on yourself. – Yatrix Oct 19 '11 at 13:43
@Yatrix: I have the same problem even if I used an ObservableCollection. The problem is not the data source, but the list view's behaviour. – melculetz Oct 19 '11 at 14:13
@melculetz oh, I know. I meant for future reference as the source, not a solution to the problem. That's why I didn't include it in my answer. Was just a suggestion for future use with listviews and itemsources. The nice thing about them is changes to the source changes the listview and vice versa if you bind it correctly. – Yatrix Oct 19 '11 at 14:25
feedback

2 Answers

up vote 1 down vote accepted

I put this in an answer so it stands out from the comment wall there.

Since you are removing on selectionchanged, anytime that changes, you're deleting. Try using your remove logic in PreviewMouseUp and then grabbing the item there. That way, clicking down on something won't remove the item until you're click is finished.

Hope this helps.

link|improve this answer
Thanks! If I use the preview events, it works. – melculetz Oct 19 '11 at 14:21
Awesome, dude. Glad you got it worked out. – Yatrix Oct 19 '11 at 14:23
feedback

You should try and avoid code behind, and adopt the MVVM design pattern. In this case, you would bind the SelectedItem of the ListView (although there is no reason this couldn't be a ListBox instead), and then just remove the SelectedItem in your view model from the collection in response a change in its value.

link|improve this answer
That's not necessarily true. MVVM isn't a pattern for all WPF applications. There's nothing wrong with code-behind while using WPF, especially in a smaller application that probably won't benefit from all that extra "stuff". You should never complicate something simple. He asked for a solution to his problem and what you suggested is rewriting his application - a bit extreme, don't you think? – Yatrix Oct 19 '11 at 13:13
True, but the biggest reasons for using MVVM are code reuse and testability, and those are features that any application can benefit from. – devdigital Oct 19 '11 at 13:15
I 100% agree with it's merits and I actually am enjoying getting into MVVM. But where he's at, he may not be able to rewrite everything to meet the pattern and a small program won't benefit from the overhead of MVVM to warrant it's use. – Yatrix Oct 19 '11 at 13:17
Yes, that may be the case in this example, but I find with the use of MVVM frameworks, development is just as quick, if not quicker with MVVM. – devdigital Oct 19 '11 at 13:19
1  
But he wasn't asking how he could make his app more maintainable, testable and of better quality. He asked for a solution to his deletion issue and you failed to provide that for him. I agree with what you're saying about programming in general, I'm only disagreeing with what you provided for the OP as a "solution". – Yatrix Oct 19 '11 at 13:31
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

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