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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T09:36:11+00:00 2026-06-14T09:36:11+00:00

I know how to bind a list to a listbox but I created a

  • 0

I know how to bind a list to a listbox but I created a multidimensional list with the below code but cannot figure out how to bind it to a listbox.

public class MultiDimDictList<K, T> : Dictionary<K, List<T>>
    {
        public void Add(K key, T addObject)
        {
            if (!ContainsKey(key)) Add(key, new List<T>());
            base[key].Add(addObject);
        }
    }

And then the below to utilize this class and add 2 strings to the list:

var myDicList = new MultiDimDictList<string, string>();
        myDicList.Add("Title", "Data");
        myDicList.Add("Title2", "Data2");

Basically what I am trying to do is bind this data to a listbox showing only the title’s but then when a button is clicked it uses the data portion to complete the process.

I am not sure where to go with this as I have been looking at other posts but haven’t found anything similar to what I am trying to do.

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-06-14T09:36:12+00:00Added an answer on June 14, 2026 at 9:36 am

    A Dictionary<K,V> is not a list. The titles in your case are the keys of the dictionary and those are not sorted. You can access them through the Keys property but would have to sort them before binding. Add this property to your MultiDimDictList

    public List<string> Titles { get { return Keys.OrderBy(k => k).ToList(); } }
    

    and bind the listbox to this property.

    The example above assumes that the keys are of string type. When using the generic type parameter K you have to convert to string first (unless you want a list of K of cause):

    public List<string> Titles {
        get {
            return Keys
                .Select(k => k.ToString())
                .OrderBy(s => s)
                .ToList(); 
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Know this might be rather basic, but I been trying to figure out how
I don't know how to bind a List of Drink to a WPF TreeView.
I know how to bind to a property, but how do i bind to
I would like to bind a list box to an observable collection in code
Does anyone know how to bind a CPen object to a listbox in VS2005
Is there a way to bind a Generic List to a multicolumn listbox, yes
I know how to bind a computed field to a document field. And I
Does anyone know how to bind a Yes/No radio button to a boolean property
I wanted to know if there's a way I can bind an Asp.net Ajax
How can I bind a key combination to my vb.net application? I know it

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.