Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can bindable properties be created for a User Control

Status
Not open for further replies.

toptomato

Programmer
Jul 22, 2005
62
0
0
US
Hi I have a user control with the following property:
[Bindable(true), Category("Data"), DefaultValue("")]
public int TotalNumber
{
get
{
return (....);
}

set
{
(...) = value;
}
}

Now theoratically if i put this user control in a grid view then the TotalNumber property of this user contol should be bindable. But its not. What am i doing wrong. All help is appricated. Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top