示例#1
0
            public override FlushingError GetFlushingError(UIElement element)
            {
                var currentInPlaceEditor = GetCurrentInPlaceEditor(element);

                Debug.Assert(currentInPlaceEditor != null);
                return(BaseRowValidation.GetFlushingError(currentInPlaceEditor));
            }
示例#2
0
            void IRowValidation.SetFlushingError(UIElement element, string flushingErrorMessage)
            {
                var currentInPlaceEditor = GetCurrentInPlaceEditor(element);

                Debug.Assert(currentInPlaceEditor != null);
                BaseRowValidation.SetFlushingError(currentInPlaceEditor, flushingErrorMessage);
            }
示例#3
0
            bool IRowValidation.IsLockedByFlushingError(UIElement element)
            {
                var currentInPlaceEditor = GetCurrentInPlaceEditor(element);

                return(currentInPlaceEditor != null?BaseRowValidation.IsLockedByFlushingError(currentInPlaceEditor) : false);
            }