public RowValidationErrorRoutedEventArgs( RowValidationError rowValidationError )
      : base()
    {
      if( rowValidationError == null )
        throw new ArgumentNullException( "rowValidationError" );

      m_rowValidationError = rowValidationError;
    }
    public RowValidationErrorRoutedEventArgs( RoutedEvent routedEvent, object source, RowValidationError rowValidationError )
      : base( routedEvent, source )
    {
      if( rowValidationError == null )
        throw new ArgumentNullException( "rowValidationError" );

      m_rowValidationError = rowValidationError;
    }
Example #3
0
 internal void SetItemValidationError(RowValidationError value)
 {
     m_itemValidationError = value;
 }