or
#region IDataErrorInfo Members
public
string
Error
{
get
{
if
(TestProperty ==
"J"
)
{
return
"Please enter valid data in this row!"
;
}
return
string
.Empty;
}
}
public
string
this
[
string
columnName]
{
get
{
string
result =
null
;
if
(columnName ==
"TestProperty"
)
{
if
(TestProperty ==
"J"
)
{
return
"Error in something."
;
}
}
return
result;
}
}
RadDragAndDropManager.ExecutionMode = DragExecutionMode.Legacy;
This had no discernable effect. Also we now get an intermitten crash: