C
Charles Bazi
Hi,
I'm using databing with some classes, and I would like to know if
there's a way to define some sort of description Attribute for a property.
I have this Porperty:
public string ItemsInStock{
get { return _ItemsInStock;}
set {_ItemsInStock = value;} }
My problem, when DataBinding in Master or Detail mode, is I have a field
referenced as "ItemsInStock" when I want it to be referenced as "Items
in stock".
I'm expecting something as:
[Databind.Caption("Items in stock")]
TIA
I'm using databing with some classes, and I would like to know if
there's a way to define some sort of description Attribute for a property.
I have this Porperty:
public string ItemsInStock{
get { return _ItemsInStock;}
set {_ItemsInStock = value;} }
My problem, when DataBinding in Master or Detail mode, is I have a field
referenced as "ItemsInStock" when I want it to be referenced as "Items
in stock".
I'm expecting something as:
[Databind.Caption("Items in stock")]
TIA