Is there any way to create “global” styles for all TextBoxes used in application? So I don’t have to do Template=… on each TextBox ?
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.
Yes. You need to use an implicit style.
Declare the style as normal:
Then declare:
The important part is that you are missing the
x:Keydeclaration. This will get applied to all TextBoxes in your application that don’t explicitly set aStyle. Include this in a global resource file.There’s more information on SilverlightShow.net.