WPF: Read only say TextBox and binding. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T10:34:03Z http://stackoverflow.com/feeds/question/1012740 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1012740/wpf-read-only-say-textbox-and-binding 0 WPF: Read only say TextBox and binding. abmv 2009-06-18T13:51:29Z 2009-06-18T14:06:42Z <p>Say I have a grid and I click an object and it displays in a detail screen,And I don't want the user to edit some data so I set the TextBox as disabled? then will binding work.Basically what I want is the TextBox to be greyed or disabled ya know? Well how about it in WPF? Can someone explain?</p> http://stackoverflow.com/questions/1012740/wpf-read-only-say-textbox-and-binding/1012752#1012752 1 Answer by Thomas Levesque for WPF: Read only say TextBox and binding. Thomas Levesque 2009-06-18T13:53:48Z 2009-06-18T13:53:48Z <p>There is a <code>IsReadOnly</code> property on the TextBox, just set it to true</p> http://stackoverflow.com/questions/1012740/wpf-read-only-say-textbox-and-binding/1012765#1012765 1 Answer by Bob King for WPF: Read only say TextBox and binding. Bob King 2009-06-18T13:56:22Z 2009-06-18T13:56:22Z <p>I would use a &lt;TextBlock/&gt; or a &lt;Label/&gt; to display static data instead of a &lt;TextBox/&gt;.</p> http://stackoverflow.com/questions/1012740/wpf-read-only-say-textbox-and-binding/1012822#1012822 4 Answer by Martin Harris for WPF: Read only say TextBox and binding. Martin Harris 2009-06-18T14:06:42Z 2009-06-18T14:06:42Z <p>Yes, binding will work with a disabled textbox. For disabling the textbox you have three options:</p> <ul> <li><p>Set the IsReadOnly property to true. This will not affect the appearance of the textbox, but will stop the user changing the value inside it.</p></li> <li><p>Set IsEnabled to false. This will gray out the textbox and stop it from receiving focus</p></li> <li><p>Use a label or a textblock. This will place the text on screen without the appearence of being in an editable control at all.</p></li> </ul> <p>As for binding, this will work the same no matter what you do. Set up the binding as normal in either the Xaml or codebehind and the value will update when the backing property changes as usual (provided you have implemented INotifyPropertyChanged, otherwise it'll only get set once)</p>