Displaying (Calling) 2 UserControl within a UserControl (WPF)
-
Hello everyone In my WPF project I have created a UserControl (this is called Applic.xaml), and within this usercontrol I have placed another UserControl (this is called PasswordScreen.xaml). Here is the xaml design code:
**"HERE IS THE UserControl THAT I PLACED..."**
In PasswordScreen.xaml there is a button (called Login). On click event when clicked I want to call ano
-
Hello everyone In my WPF project I have created a UserControl (this is called Applic.xaml), and within this usercontrol I have placed another UserControl (this is called PasswordScreen.xaml). Here is the xaml design code:
**"HERE IS THE UserControl THAT I PLACED..."**
In PasswordScreen.xaml there is a button (called Login). On click event when clicked I want to call ano
For starters you're not modifying the existing
Applic
UserControl. You are creating a new one and setting theSwitchboardView
into that UserControl. Then you're dropping them both on the floor!A positive attitude may not solve every problem, but it will annoy enough people to be worth the effort.
-
For starters you're not modifying the existing
Applic
UserControl. You are creating a new one and setting theSwitchboardView
into that UserControl. Then you're dropping them both on the floor!A positive attitude may not solve every problem, but it will annoy enough people to be worth the effort.