I have a program that shows a lot of data, and I am wondering what the best way would be to get and set the values of the labels in windows from other classes.
Update: I am basically wondering about this:
private string _name;
public string Name
{
get
{
return _name;
}
set
{
_name = value;
}
}
How would it work in this case, etc.