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

  • Home
  • SEARCH
  • 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 61845
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T18:22:58+00:00 2026-05-10T18:22:58+00:00

I have a component which has a List<T> property. The class in the list

  • 0

I have a component which has a List<T> property. The class in the list has each of its properties decorated with a description attribute but the descriptions do not show up in the Collection Editor

In the IDE designer is there a way to turn on the Description panel in the standard Collection Editor? Will I need to inherit my own type editor from CollectionEditor to achieve 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. 2026-05-10T18:22:59+00:00Added an answer on May 10, 2026 at 6:22 pm

    Basically, you’d either need to create your own editor, or subclass CollectionEditor and mess with the form. The latter is easier – but not necessarily pretty…

    The following uses the regular collection editor form, but simply scans it for PropertyGrid controls, enabling HelpVisible.

    /// <summary> /// Allows the description pane of the PropertyGrid to be shown when editing a collection of items within a PropertyGrid. /// </summary> class DescriptiveCollectionEditor : CollectionEditor {     public DescriptiveCollectionEditor(Type type) : base(type) { }     protected override CollectionForm CreateCollectionForm()     {         CollectionForm form = base.CreateCollectionForm();         form.Shown += delegate         {             ShowDescription(form);         };         return form;     }     static void ShowDescription(Control control)     {         PropertyGrid grid = control as PropertyGrid;         if (grid != null) grid.HelpVisible = true;         foreach (Control child in control.Controls)         {             ShowDescription(child);         }     } } 

    To show this in use (note the use of EditorAttribute):

    class Foo {     public string Name { get; set; }     public Foo() { Bars = new List<Bar>(); }     [Editor(typeof(DescriptiveCollectionEditor), typeof(UITypeEditor))]     public List<Bar> Bars { get; private set; } } class Bar {     [Description('A b c')]     public string Abc { get; set; }     [Description('D e f')]     public string Def{ get; set; } } static class Program {     [STAThread]     static void Main() {         Application.EnableVisualStyles();         Application.Run(new Form {             Controls = {                 new PropertyGrid {                     Dock = DockStyle.Fill,                     SelectedObject = new Foo()                 }             }         });     } } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 166k
  • Answers 166k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Short answer is you have a CURSOR here. The scalar… May 12, 2026 at 1:15 pm
  • Editorial Team
    Editorial Team added an answer Try to create an alias for the "car" property before… May 12, 2026 at 1:15 pm
  • Editorial Team
    Editorial Team added an answer Untested code, but it will be similiar to: AppDomain.CurrentDomain.SetPrincipalPolicy(PrincipalPolicy.WindowsPrincipal); //… May 12, 2026 at 1:15 pm

Related Questions

I have a Flex3 project with 2 HorizontalList controls; one of which has drag
What's the best way to implement an IDataProvider and a LoadableDetachable in Wicket for
In my quest to develop a pretty data-driven silverlight app, I seem to continually
Whenever a user reports an error such as System.Runtime.InteropServices.SEHException - External component has thrown

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.