show/hide this revision's text 2 comment

To make this work you need to do the following:

  1. Make sure the TextBox is databound to the right property in the correct way

  2. Set up the needed checks for each textBox in the CanWriteProperty override in your root object

    if (propertyName == OpeningDateProperty.Name) return false;
    
  3. Make sure the rootBindingsource's CurrentItemChanged event is set up right

    private void rootBindingSource_CurrentItemChanged(object sender, EventArgs e)
    {
        readWriteAuthorization1.ResetControlAuthorization();
    }
    
  4. Make sure the texBox's "ApplyAuthorization on ReadWriteAuthorization" is set to true

This solved the problem for me.

show/hide this revision's text 1

To make this work you need to do the following:

  1. Make sure the TextBox is databound to the right property in the correct way

  2. Set up the needed checks for each textBox in the CanWriteProperty override in your root object

    if (propertyName == OpeningDateProperty.Name) return false;
    
  3. Make sure the rootBindingsource's CurrentItemChanged event is set up right

    private void rootBindingSource_CurrentItemChanged(object sender, EventArgs e)
    {
        readWriteAuthorization1.ResetControlAuthorization();
    }
    
  4. Make sure the texBox's "ApplyAuthorization on ReadWriteAuthorization" is set to true