I'm having trouble deciding what to think about this piece of code:
public SolidColorBrush Brush
{
get { return IsValid ? _validItemBrush : _invalidItemBrush; }
}
It is part of a view model in my current project and as you can imagine, the Brush will be bound to some text elements in the UI, to indicate (in-)validity of other pieces of data, in an otherwise fairly simple and straightforward dialog.
The proponents of this piece of code say that since we're using WPF, we might as well allow for some simple WPF specific constructs in the view model.
The opponents say that this violates Separation of Concerns, as it clearly dictates style which should be taken care of solely by the view.
Please share your arguments, and if you're not happy with the code above, please share your ideas around alternative solutions. (I'm particularly interested in what you have to say about using DataTemplates).
Is it possible that there is one solution that could be considered best practice?
DataTemplates? – Reed Copsey Feb 2 '11 at 0:34DataTemplates mapped to specificDataTypes is one alternative solution to the problem. I would like to know if it is being used, or considered too "heavyweight". – Christoffer Lette Feb 2 '11 at 0:43DataTemplatewouldn't really be an appropriate way to handle a brush change. They're really for determining how to display a custom type. They can be used, for example, to map a custom class to a view designed to display that class information appropriately. – Reed Copsey Feb 2 '11 at 0:45