How can I change textbox style in a textbox style data trigger? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T11:17:35Z http://stackoverflow.com/feeds/question/866647 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/866647/how-can-i-change-textbox-style-in-a-textbox-style-data-trigger 0 How can I change textbox style in a textbox style data trigger? Captain Scarlet 2009-05-15T01:19:27Z 2009-07-25T01:00:01Z <p>I have created a default style for my textbox controls, but I would like to be able to change the style at runtime. </p> <p>I have a property that I want to bind to that informs the UI if the data is mandatory or not, and I want to be able to change the style of the textbox to another style that displays a red line under the textbox. I can't use this in the standard textbox style I've created because the property is different for each textbox i.e. IsEmailMandatory, isNameMandatory.</p> <p>I've tried to bind a data trigger in the style of the textbox for each textbox I have, but I get a message telling me I can't change a style within a style. so how do I do this?</p> http://stackoverflow.com/questions/866647/how-can-i-change-textbox-style-in-a-textbox-style-data-trigger/868215#868215 0 Answer by Greg Bacchus for How can I change textbox style in a textbox style data trigger? Greg Bacchus 2009-05-15T11:44:44Z 2009-05-15T11:44:44Z <p>You don't need to change the whole style in the trigger, just the template. </p> <p>Another way to achieve something similar would be to use attached properties. Assuming that the IsEmailMandatory, isNameMandatory properties are on the DataContext not the control itself, you could then bind the value you want to an attached property and then trigger off that in your default style.</p>