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 8525645
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T08:02:38+00:00 2026-06-11T08:02:38+00:00

I have a TabControl where each TabItem shows a ListView . The list is

  • 0

I have a TabControl where each TabItem shows a ListView.
The list is the same for each tab, but it is sorted by different fields depending on the tab selected.

So, I don’t want that each TabItem contains a different ListView:

<TabControl>

    <TabItem>
        <ListView/>
    </TabItem>

    <TabItem>
        <ListView/>
    </TabItem>

</TabControl>

How can I accomplish this?

  • 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-06-11T08:02:40+00:00Added an answer on June 11, 2026 at 8:02 am

    Quick and Easy. Let the code just the way it is now. Then have just one list on your ViewModel and you can have N diferent readonly properties (where N is the number of tabs) who will return the same list but sorted by your desired order.

    The thing is:

    I don’t want that each TabItem contains a different ListView

    But that’s precisely what you’re doing. Having a sorted-different list within each TabItem.

    Example

    View:

    <TabControl>
        <TabItem>
            <ListView ItemsSource="{Binding SortedByX}" />
        </TabItem>
        <TabItem>
            <ListView ItemsSource="{Binding SortedByY}" />
        </TabItem>
        <TabItem>
            <ListView ItemsSource="{Binding SortedByZ}" />
        </TabItem>
    </TabControl>
    

    ViewModel:

    public List<The type of your list items> List { get; set; }
    
    public List<The type of your list items> SortedByX 
    {
        get
        {
            return List.Sort(iComparer);
        }
    }
    
    // Or using LINQ
    
    public List<The type of your list items> SortedByY 
    {
        get
        {
            return List.OrderBy....
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a TabControl and each Tab can contain the same UI but with
Problem I have Telerik TabControl and each tab content is a partial view. Everything
I have a WPF TabControl with two TabItems. Each TabItem contains a ListBox with
I have a tabcontrol in my window, inside each tabitem I want to have
I have a TabControl with multiple TabItems. In each TabItem there needs to be
I have a tab control where each TabItem is a UserControl. I'd like to
I have a TabControl that contains several tabs. Each tab has one UserControl on
I have a WPF application that uses a TabControl. Each TabItem will contain a
I have a tabcontrol with 9 tabitems in it. Each tab has as series
I have a TabControl and each tab contains a TradeBookSetViewModel. As the Tradebook can

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.