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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T01:52:27+00:00 2026-05-28T01:52:27+00:00

Ok so, I have a listview with several rows which is defined by setting

  • 0

Ok so, I have a listview with several rows which is defined by setting the itemsource in the code. Within each row that’s generated I have a combobox. In the code I have another array of objects which is the collection that this combobox should display.

I basically want it so that for each row you can select an option from the list. The list of possibilities will always be the same, hence the array.

A little bit of code to help. This is what I have for XAML:

    <ListView Name="lvVanList">
        <ListView.View>
            <GridView>
                <DisplayMemberBinding="{Binding Path=Number}">Van</GridViewColumn>
                <GridViewColumn Header="Rooms">
                    <GridViewColumn.CellTemplate>
                        <DataTemplate>
                            <StackPanel Orientation="Horizontal">
                                <ComboBox Name="cbSchemeList" ItemsSource="{Binding Path=_RoomList}" SelectedValue="{Binding Path=Room}" DisplayMemberPath="Name" />
                            </StackPanel>
                        </DataTemplate>
                    </GridViewColumn.CellTemplate>
                </GridViewColumn>
            </GridView>
        </ListView.View>
    </ListView>

The code behind:

    private RoomList _RoomList;

    public populateList()
    {
        this.lvVanList.ItemsSource = this.getVans;
        this._RoomList = this.getRooms;
    }

    private class Room
    {
        string Name { get; set; }
        int Windows { get; set; } 
    }

Unfortunately this shows a blank list when the combobox is open.

I do have a way around this by storing the possibilities list in the object which is binded to each row but I’m sure I should be able to just use a single collection.

It’s tough to describe so if there’s any information I’ve missed or it’s not understandable please let me know.

Thanks in advance

  • 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-28T01:52:27+00:00Added an answer on May 28, 2026 at 1:52 am

    The problem is that the binding path (_RoomList) is relative to the DataContext of each entry of the ListView. And that DataContext is the displayed item and not your view.

    You can solve this in multiple ways:

    1. Put the list in the displayed items – that’s what you already discovered and want to avoid
    2. Give your view a name and use that name the binding as ElementName
    3. In the binding, find the ancestor of the item that is the view
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a listview with several items that are created dynamically, each has two
In my Android App I have a listview containing 30 rows, and each row
I currently have a list view which has several rows of data and I
I created a ListView with a custom layout for each view. I have several
I have a ListView containing several GridViewColumns. Several of the columns are checkboxes. Each
I have a listview and i would like to populate a row with several
I have a ListView with several rows, and the user can start async tasks
I have a custom listview row that contains a number of textView components. Instead
Background: I have a ListView / GridView with several columns. In some situations, only
I have several similar user controls which display listviews of respectively different data entities.

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.