Is it possible to add 'placeholder' text to WPF datagrid cells, akin to HTML's form attributes?
e.g.
<input type="text" name="fname" placeholder="First name"/>
Firstname fades as soon as the box has content / is given focus, can never be copied, and is there just as a hint, the value is never set to first name.
I want to be able to bind it to an inherited default value, and have that value disappear as soon as it has focus, and never save the value back to the underlying view mode.