I have:
A Window:
- Window1 (MainWindow)
Three UserControls:
-UserControl1
-UserControl2
-UserControl3
In window 1 I have a label (label1) and in each of the UserControls I have a ComboBox.
Each ComboBox has 3 options: BLUE, BLACK and WHITE. The same 3 options for each.
The goal is when I select an option in a UserControl, the mainWindow label updates. If I select Black in UserControl1, the contents of the Label shows Black.
If I then go to USERCONTROL2 and select white, the content of the label updates to white (basically replaces).
I use C # and WPF.
Can anyone help?
Thank you.