Horje
C# show text in another form Code Example
C# show text in another form
You could modify the constructor of Form2 like this:

public Form2(string labelText)
{
    InitializeComponent();
    this.labelX1.Text = labelText;
}
then create Form2 passing in the text:

Form2 frm2 = new Form2(this.button1.text);




Csharp

Related
unity follow object Code Example unity follow object Code Example
how to use display attibute .net core Code Example how to use display attibute .net core Code Example
c# merge two lists as queryable Code Example c# merge two lists as queryable Code Example
log4net rollingfileappender c# Code Example log4net rollingfileappender c# Code Example
prime number algorithm Code Example prime number algorithm Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10