Esempio n. 1
0
        /// <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();
        }
Esempio n. 2
0
 /// <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();
 }