So, I'm doing a school project atm. The application needs to be able to calculate the area of squares, circles etc.
I have one form for each figure to calculate the area off. Right now I have a "main menu" and three forms (one for each figure) and I want to be able to assign a variable LatestResult
within one form and access it from the main menu form.
Note: I want to be able to do this without "loading the variable into the new form" like this: Form1 FormMainMenu = new Form1(LatestResult)
I've been trying to work with Get & Set in my Variables.cs
class, but I can't seem to make it work right, if it's possible to do it with this.
EDIT: Put my code in the post
My Variables.cs
looks like this:
public static string latestresult2
{
get
{
return latestresult2;
}
set
{
latestresult2 = value;
}
}
And then I assign the value upon a button click in one form:
Variables.latestresult2 = breddeR + " * " + længdeR + " = " + resultat;
breddeR and længdeR are the int variables for my calculation and resultat is the result.
At last I try to do this in another form:
label1.Text = Variables.latestresult2;
EDIT 2:
From my MainView
form
private void button1_Click(object sender, EventArgs e)
{
Form2 FormTrekant = new Form2();
FormTrekant.Show();
}
You may use the
INotifyPropertyChanged
interface to facilitate this. This interface works with both WinForms and WPF.The
INotifyPropertyChanged
interface allows you to subscribe to another objects property changes. In the above code, the second form will raise the event when ever itsLatestResult2
property has had its value changed.Now you just have your Form1 subscribe to it.
Your
MainWindow
can now react to changes withinForm2
, without having to pass values around. One thing to note, is that you will want to unsubscribe from the event when theForm2
is closed. Otherwise you will leak.