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?
|
|
Yes, binding will work with a disabled textbox. For disabling the textbox you have three options:
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) |
||
|
|
|
|
There is a |
||
|
|
|
|
I would use a <TextBlock/> or a <Label/> to display static data instead of a <TextBox/>. |
||
|
|
