Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
52 views

How can I tell if a Hibernate entity is read-only or not

I've made an entity read-only after retrieving it using: Session session = (Session)entityManager.getDelegate(); session.setReadOnly( entity, makeReadOnly ); I'd like to be able to test whether ...
2
votes
2answers
793 views

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?
0
votes
0answers
103 views

Textbox style trigger with “IsReadOnly” not working

I've made an application resource with a style which should be triggered if the textbox has the "IsReadOnly" property. Looks like this: <Application.Resources> <Style ...
0
votes
0answers
235 views

How add a global “IsReadOnly” style to all DataGridTextColumns

I currently have a ResourceDictionary file for my WPF application, which pretty much adds every style that I could possibly want throughout all of my application's DataGrids. Except one. How can I ...
0
votes
1answer
469 views

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

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" ...
0
votes
1answer
600 views

WPF IsReadOnly property Binding

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 ...
0
votes
1answer
78 views

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 ...