public override FlushingError GetFlushingError(UIElement element) { var currentInPlaceEditor = GetCurrentInPlaceEditor(element); Debug.Assert(currentInPlaceEditor != null); return(BaseScalarValidation.GetFlushingError(currentInPlaceEditor)); }
void IScalarValidation.SetFlushingError(UIElement element, string flushingErrorMessage) { var currentInPlaceEditor = GetCurrentInPlaceEditor(element); Debug.Assert(currentInPlaceEditor != null); BaseScalarValidation.SetFlushingError(currentInPlaceEditor, flushingErrorMessage); }
bool IScalarValidation.IsLockedByFlushingError(UIElement element) { var currentInPlaceEditor = GetCurrentInPlaceEditor(element); return(currentInPlaceEditor != null?BaseScalarValidation.IsLockedByFlushingError(currentInPlaceEditor) : false); }