isreadonly

Configuration: When does IsReadOnly take effect?

This is a simple question, but one I'm not finding much information for in the docs. When dealing with custom configuraiton sections, collections, elements, etc, when does the IsReadOnly setting actually mean read only? With IsReadOnly returning True, I can still do things like MyBase.Item("property") = value; Are these classes only "r...

ReadOnlyAttribute vs PropertyDescriptor.IsReadOnly()

What is the difference between using a PropertyDescriptor that returns a value for the IsReadOnly() method, and one that is associated with a ReadOnlyAttribute? ...

WPF IsReadOnly property Binding

Hello there. Is there any way I can bind some datacontext's property value to the IsReadOnly property? e.g: <toolkit:DataGridTemplateColumn Header="MyColumn" Width="160" IsReadOnly="{Binding Path=BooleanPropertyFromMyViewModel, Converter={StaticResource InvertBoolConv}}"/> Or should I create a DataTrigger? ...

WPF DataGridComboBoxColumn`s ComboBox is only visible when DataGrid has IsReadOnly=FALSE

Hello, Why is the ComboBox in that column only visible via double-click in the empty cell when the DataGrid is set to IsReadOnly = FALSE ??? <DataGridComboBoxColumn Width="*" IsReadOnly="False" Header="test" /> using a DataTemplateColumn works as always... whats wrong with that DataGridComboBoxColumn? works: <DataGridTemplateColum...