Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 771203
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T18:36:56+00:00 2026-05-14T18:36:56+00:00

I already read many examples on extending ListViews with checkboxes bound with IsSelected. But

  • 0

I already read many examples on extending ListViews with checkboxes bound with IsSelected. But I want something more.

I want a seperation between the checked and selected state, so i get a ListBox that has a single selected item, but can have multiple checked items.
Unfortunately ListViewItem does not have a property for checked and I dont see a possibility to get the ListView to work with a custom CheckableListViewItem.

Of course i could use a List of objects with a checked property as ItemSource, but I dont think thats a good way to go. Checked or not is a matter of the list or item-container, not of the object listed in it. Beside that I dont want all my classes like user, role, group to have counterparts like checkableUser, checkableRole and checkableGroup.

The behaviour i want can be easyly accomblished for the UI with a

<DataTemplate x:Key="CheckBoxCell">
   <StackPanel Orientation="Horizontal">
      <CheckBox />
   </StackPanel>
</DataTemplate>

and a

<GridViewColumn CellTemplate="{StaticResource CheckBoxCell}" Width="30"/>

But without a binding on the checkbox i cant check if it is checked or not.

Is there any way to accomplish something like that? The perfect solution for me would be to have listView1.SelectedItem, listView1.CheckedItems and maybe a listView1.UncheckedItems and of course listView1.CheckItem and listView1.UncheckItem.

Thanks for any help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T18:36:57+00:00Added an answer on May 14, 2026 at 6:36 pm

    Ok, I got it.
    Wasn’t much to do, but becouse I’m new to the whole WPF stuff, its been some work to figure out.
    Here is the solution:

    public class CheckableListViewItem : ListViewItem
    {
        [Category("Appearance")]
        [Bindable(true)]
        public bool IsChecked { get; set; }
    }
    
    public class CheckableListView : ListView
    {
        public IList CheckedItems
        {
            get
            {
                List<object> CheckedItems = new List<object>();
                for (int i=0;i < this.Items.Count; ++i)
                {
                    if ((this.ItemContainerGenerator.ContainerFromIndex(i) as CheckableListViewItem).IsChecked)
                        CheckedItems.Add(this.Items[i]);
                }
                return CheckedItems;
            }
        }
        public bool IsChecked(int index)
        {
            if (index < this.Items.Count) return (this.ItemContainerGenerator.ContainerFromIndex(index) as CheckableListViewItem).IsChecked;
            else throw new IndexOutOfRangeException();
        }
        protected override bool IsItemItsOwnContainerOverride(object item)
        {
            if (item is CheckableListViewItem) return true;
            else return false;
        }
        protected override DependencyObject GetContainerForItemOverride()
        {
            return new CheckableListViewItem();
        }
    }
    

    Insert into your XAML under Window.Resources (clr = my class namespace):

    <DataTemplate x:Key="CheckBoxCell">
        <StackPanel Orientation="Horizontal">
            <CheckBox IsChecked="{Binding Path=IsChecked, 
                RelativeSource={RelativeSource FindAncestor, 
                AncestorType={x:Type clr:CheckableListViewItem}}}" />
        </StackPanel>
    </DataTemplate>
    

    And this as your CheckableListView:

    <clr:CheckableListView SelectionMode="Single" [...] >
            <ListView.View>
                <GridView>
                    <GridViewColumn CellTemplate="{StaticResource CheckBoxCell}" 
                          Width="30"/>
                    [...]
                </GridView>
            </ListView.View>
        </clr:CheckableListView>
    

    Maybe this helps someone with the same problem.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.