WPF: Read only say TextBox and binding. - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T10:34:03Zhttp://stackoverflow.com/feeds/question/1012740http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1012740/wpf-read-only-say-textbox-and-binding0WPF: Read only say TextBox and binding.abmv2009-06-18T13:51:29Z2009-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#10127521Answer by Thomas Levesque for WPF: Read only say TextBox and binding.Thomas Levesque2009-06-18T13:53:48Z2009-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#10127651Answer by Bob King for WPF: Read only say TextBox and binding.Bob King2009-06-18T13:56:22Z2009-06-18T13:56:22Z<p>I would use a <TextBlock/> or a <Label/> to display static data instead of a <TextBox/>.</p>
http://stackoverflow.com/questions/1012740/wpf-read-only-say-textbox-and-binding/1012822#10128224Answer by Martin Harris for WPF: Read only say TextBox and binding.Martin Harris2009-06-18T14:06:42Z2009-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>