I use a TabControl
Each tab has its default button.
The first default button is working.
The second default button is a normal button.
How to fix that?
I use a TabControl Each tab has its default button. The first default button
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could bind each Button’s
IsDefaultproperty to its corresponding TabItem’sIsSelectedProperty. Each time the selected tab item changes, another button would become the default, then.Something like that: