Create a public property on your form of type string, which creates a separate private string variable to store the actual string data. Now, instead of using that private string variable for your property, use the LabelBox.Text property instead.
Code Snippet
public string LabelText1
{
get
{
return label1.Text;
}
set
{
label1.Text =
value;
}
}
Rudedog