asked on
private void Form1_Load(object sender, EventArgs e)
{
this.CenterToScreen();
InitSettings();
ProcessClass pc = new ProcessClass();
pc.BeginProcess();
}
public void ProcessChanged(int value);
{
//Do Something;
}
public class FMCProcess
{
public List<string> BeginProcess()
{
List<string> result = new List<string>();
//I want to call ProcessChanged on Form1 here.
return result;
}
}