public string empName="";
//This property Makes bindable.
[System.ComponentModel.Bindable(true)]
public string employeeName
{
get
{
return empName;
}
set
{
empName=value;
this.txtName.Text = empName.ToString();
}
}
No comments:
Post a Comment
Comments