My program has got tens of TextBoxes, which all could use one common Validation Rule. The rule itself is not very complex: it would only prevent the use of a semicolon (;).
Does there exist any way to implement it (more easily than applying the same rule manually to all TextBoxes)?
Edit: I cannot see how it could be related to How to use IDataErrorInfo.Error in a WPF program? - I have no problems applying the validation to a TextBox (or displaying the error in a ToolTip).