/// <summary> /// Performs the drop. /// </summary> /// <param name="dragEventArgs">The <see cref="System.Windows.Forms.DragEventArgs"/> instance containing the event data.</param> protected override void Drop(DragEventArgs dragEventArgs) { // Create the validator output form. var validatorOutputForm = new ValidationOutputForm { XsdFilePath = SelectedItemPath, XmlFilePaths = DragItems }; validatorOutputForm.ShowDialog(); }
/// <summary> /// Performs the drop. /// </summary> /// <param name="dragEventArgs">The <see cref="System.Windows.Forms.DragEventArgs"/> instance containing the event data.</param> protected override void Drop(DragEventArgs dragEventArgs) { // Create the validator output form. var validatorOutputForm = new ValidationOutputForm {XsdFilePath = SelectedItemPath, XmlFilePaths = DragItems}; validatorOutputForm.ShowDialog(); }