void OnReadOnlyStateChanged(ReadOnlyState state) { UpdateChildrenElementStatus(); }
private void OnReadOnlyStateChanged(ReadOnlyState state) { if (this.floatingAnnotation != null) { this.floatingAnnotation.IsReadOnly = state.IsReadOnly; } if (this.dockedAnnotation != null) { this.dockedAnnotation.IsReadOnly = state.IsReadOnly; } }
void OnReadOnlyStateChanged(ReadOnlyState state) { this.IsReadOnly = state.IsReadOnly; }
void OnReadonlyStateChanged(ReadOnlyState state) { if (null != this.propertyInspector) { this.propertyInspector.IsReadOnly = state.IsReadOnly; } }