Greetings,
If i as for example have this:
This is my main window
Class MainWindow
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Handles Button1.Click
Dim Other As New Window1
Other.Show()
End Sub
End Class
This is the window that opens when button is clicked
Public Class Window1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Handles Button1.Click
Dim Main As New MainWindow
Main.TextBox1.Text = TextBox1.Text
End Sub
End Class
So what i want it to do is that the textbox1.text in the MainWindow, loads the "Value" from Textbox1.text in the Window1