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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T17:26:03+00:00 2026-06-02T17:26:03+00:00

I searched a lot but couldn’t find any solution. I am probably using the

  • 0

I searched a lot but couldn’t find any solution. I am probably using the wrong keywords. I have a class which is basically an extended version of ListView control.

I defined some custom attributes for my customized ListView, such as FileName, OrderType etc, and they work fine.

I also want to pass an array to my class which includes ColumnNames to populate the data within class.

In MyListView Class

public class ColumnNames : Attribute
{
    public string[] Values { get; set; }

    public ColumnNames(params string[] values)
    {
        this.Values = values;
    }
}

[ColumnNames("a1","a2","a3","a4","a5","a6","a7","a8","a9")]

public MyListView() {

     for (int i = 0; i < 7; i++)
            this.Columns.Add(this.ColumnNames[i]);

    }

In Form1 Class

MyListView lstv = new MyListView();

lstv.ColumnNames[0] = "hede1";
lstv.ColumnNames[1] = "hede2";
lstv.ColumnNames[2] = "hede3";

EDIT : I simply couldn’t achieve what I wanted. Could you show me a working example of this?

I use this listview to display information taken from a database. (I use ListView instead of DataGrid) I want to pass the column names to this class which will be used both for SQL query “SELECT xxxxx, yyyyy, zzzz FROM table;” and column names this.columns.add(“xxxxx”); this.columns.add(“yyyyy”); this.columns.add(“zzzzz”);

  • 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-02T17:26:08+00:00Added an answer on June 2, 2026 at 5:26 pm

    If you want to stick to the attribute, you can access its data like this:

    var attributes = this.GetType().GetCustomAttributes(typeof(ColumnNames), false);
    foreach (var attr in attributes)
    {
        var a = attr as ColumnNames;
        foreach (var column in a.Values)
        {
            this.Columns.Add(column);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have searched around a lot for a solution, but could not find any.
I searched for this a lot, but I couldn't find a solution for this
Hy there I searched a lot on google, but couldn't find an answer. Maybe
I have searched a lot and tried much but I can not find the
I have searched a lot of places but couldnt find a clean sequential explanation
I searched a lot but couldn't find a answer for this question: Is there
I've searched a lot here but couldn't find a similar topic: i need to
i have searched a lot but could not find the exact way to do
I searched for this a lot but couldn't find the answer. Tomcat documentation on
I searched a lot but couldn't find the way to measure web page loading

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.