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 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

Related Questions

I would like to have a Java component which has a resize icon on
I have an old C++ COM component which has to stay in Visual Studio
Something similar has been asked in maven user list but I have the situation,
I have a WPF application which has a DirectX component within it. This component
I have a component screen which has 2 states: show and hide. When I
I have a component which writes/generates javascript from a server side renderer. This component
I have a VB6 COM component which I need to call from my .Net
I have a non-visual component which manages other visual controls. I need to have
we have this scenario: A server which contains needed data and client component which
I have created a non-visual component in C# which is designed as a placeholder

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.