Dear moondaddy,
As I understand, you have a list of business objects, when performing data
binding, you want some of the properties in the custom class not be
displayed in the list control.
You can use the Browsable attribute, setting it to false would make the
property hidden when performing data binding. e.g.
============== Code Sample ===============
class Customer
{
private int id;
private string name;
private string coutry;
public Customer(int id, string name, string coutry)
{
this.id = id;
this.name = name;
this.coutry = coutry;
}
public int ID
{
get { return id; }
set { this.id = value; }
}
[Browsable(false)]
public string Name
{
get { return name; }
set { this.name = value; }
}
public string Country
{
get { return coutry; }
set { this.coutry = value; }
}
}
private void Form2_Load(object sender, EventArgs e)
{
List<Customer> arr = new List<Customer>();
arr.Add(new Customer(1, "Zhang", "China"));
arr.Add(new Customer(2, "John", "US"));
arr.Add(new Customer(3, "Ricky", "UK"));
arr.Add(new Customer(4, "Hkjer", "UK"));
arr.Add(new Customer(5, "Rbtrw", "DE"));
arr.Add(new Customer(6, "Ricky", "AU"));
arr.Add(new Customer(7, "Griao", "FR"));
this.dataGridView1.DataSource = arr;
}
=============================================
When running the code, you'll find the "Name" property is not displayed in
the DataGridView.
Should you have any questions, please feel free to let me know.
Sincerely,
Zhi-Xin Ye
Microsoft Managed Newsgroup Support Team
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
(e-mail address removed).
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/en-us/subscriptions/aa948868.aspx#notifications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://support.microsoft.com/select/default.aspx?target=assistance&ln=en-us.
==================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.